Page 1 of 1

No such file or directory @ error/blob.c/OpenBlob/2658

Posted: 2014-06-15T20:24:27-07:00
by bill wu
Here's the error I got for the following code:
vcMagic.exe: unable to open image `á╔P': No such file or directory @ error/blob.c/OpenBlob/2658

Code: Select all

InitializeMagick(*argv);
	Image image;

	try{
		image.read("file.tif");
	}
	catch (exception &e){
		cout << e.what() << endl;
	}
Either absolute path and relative path do not work. bmp format is not work also.
But, I can successfully use the read() in demo project. Is there any setting missing when I create this project?
I am currently using visual c++ 2013 and ImageMagick-6.8.9-Q16 in development.

Thanks for help.