Page 1 of 1

Should MagickGetOrientation return exif:orientation?

Posted: 2016-02-07T14:59:23-07:00
by sergeyfedotov
Hello.

In this simple example:

Code: Select all

MagickWand* wand;
wand = NewMagickWand();
MagickReadImage(wand, "photo.jpg");

Code: Select all

int a = MagickGetOrientation(wand);
a = 0

Code: Select all

char* b = MagickGetImageProperty(wand, "exif:Orientation");

b = 6

It is expected behaviour?