MagickCommandGenesis Problem
Posted: 2011-07-25T17:10:42-07:00
Hello,
I'm trying to execute a command similar to "convert -threshold 90%" on my Linux box with a C program, compiled using gcc. I'm using the following code:
and getting the error " error: dereferencing pointer to incomplete type".
I take it that using wand->image_info is incorrect in trying to access the ImageInfo* required for the first argument?
I'm trying to execute a command similar to "convert -threshold 90%" on my Linux box with a C program, compiled using gcc. I'm using the following code:
Code: Select all
#include <wand/MagickWand.h>
...
MagickCommandGenesis(wand->image_info,...)
I take it that using wand->image_info is incorrect in trying to access the ImageInfo* required for the first argument?