imagefile.cpp
c:\imagemagick-5.4.8\magick++\lib\magick++\include.h(13) : fatal error C1083: Cannot open include file: 'magick/magick_config.h': No such file or directory
Error executing cl.exe.
can any 1 help as tis is the first time i'm working wif magick++ n vc++ 6. i tried adding the magick folder to the library, but it could not find the file still...
any help would b greatly appreciated...
thx
Code: Select all
#include <stdio.h>
#include <assert.h>
#include <imagefile.h>
int main(int argc, char ** argv) {
printf("argc = %d\n", argc);
assert(argc > 2); // Invoke with a filename argument
RGBAImage crl_image;
ImageFile::read(argv[1], &crl_image);
printf("top pixel is %d %d %d\n", crl_image(0,0,0), crl_image(0,0,1), crl_image(0,0,2));
ImageFile::write(argv[2], &crl_image);
return 0;
}