Search found 2 matches

by m990xd
2017-01-02T19:41:35-07:00
Forum: MagickWand
Topic: How to get Image information...
Replies: 2
Views: 23927

Re: How to get Image information...

I solved my problem.
As you mentioned, I used magickGetImageFormat() and magickGetImageFilename() instead of magickGetFormat() and magickGetFilename(), I was successful.
I understood the difference between wand and image.

snibgo, thank you a lot. ^^
by m990xd
2017-01-02T17:13:45-07:00
Forum: MagickWand
Topic: How to get Image information...
Replies: 2
Views: 23927

How to get Image information...

Hello.
I'm a newbie and trying to use some get functions.
But some get functions return right values, some return nothing.


#include <stdio.h>
#include <stdlib.h>
#include <MagickWand/MagickWand.h>

void test_wand(void)
{
MagickWand *mw = NULL;
MagickBooleanType status;
int width;
char *outStr ...