Search found 1 match

by raymond
2012-09-12T04:07:50-07:00
Forum: Developers
Topic: the first step in using magick++ in window MFC?
Replies: 0
Views: 4293

the first step in using magick++ in window MFC?

Hi,

I am new to magick++.
I tried to complie the simple examples.


InitializeMagick(NULL );//
Image image;
// Read a file into image object
image.read( "C:\\TN.jpg" ); //<- this line failed on debug mode

// Crop the image to specified size (width, height, xOffset, yOffset)
image.crop ...