Search found 1 match
- 2013-05-02T22:15:06-07:00
- Forum: Users
- Topic: magick-config.h not found C program
- Replies: 0
- Views: 5594
magick-config.h not found C program
Hi, I am trying to get a screen shot using the following code; #include <stdio.h> #include </wand/MagickWand.h> int main(int argc, char **argv) { MagickWandGenesis(); MagickWand *wand = NULL; wand = NewMagickWand(); MagickReadImage(wand,"x:root"); // <-- Invoke ImportImageCommand MagickWriteImage ...