No such file or directory @ error/blob.c/OpenBlob/2658
Posted: 2014-06-15T20:24:27-07:00
Here's the error I got for the following code:
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.
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;
}
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.