Problem with Image.read(), write() methods
Posted: 2009-10-25T11:31:46-07:00
Hi,
I've got some problem with Image object.
Everything is ok, until i try to read(or write) Image to file. If I try read from file in constructor - the same.
I'm using windows with Visual Studio 2008.
Can anybody give me any advices what can be wrong?
I've got some problem with Image object.
Code: Select all
Magick::Image image;
try{
image.read("1.raw"); // here is my problem
}
catch(Magick::Exception &ex){
std::cout<<"Exception: "<<ex.what()<<std::endl;
}
I'm using windows with Visual Studio 2008.
Can anybody give me any advices what can be wrong?