Search found 1 match

by sergeyfedotov
2016-02-07T14:59:23-07:00
Forum: MagickWand
Topic: Should MagickGetOrientation return exif:orientation?
Replies: 0
Views: 14320

Should MagickGetOrientation return exif:orientation?

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?