Search found 1 match

by sl235
2013-05-02T22:15:06-07:00
Forum: Users
Topic: magick-config.h not found C program
Replies: 0
Views: 6433

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 ...