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

Magick++ is an object-oriented C++ interface to ImageMagick. Use this forum to discuss, make suggestions about, or report bugs concerning Magick++.
Post Reply
bill wu
Posts: 1
Joined: 2014-06-11T21:52:40-07:00
Authentication code: 6789

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

Post 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.
Post Reply