Hi,
I am trying to rotate a picture by defining the picture rotation in the EXIF metadata:
When I look at the image e.g. in IrfanView, Photoshop, etc. then the image is correctly rotated. BUT when I look at the image in the built-in Nokia (N8) photo view the image is not rotated. Does the Nokia photo viewer require something else to rotate pictures correctly?Code:CExifModify* modify; switch (data.iDeviceOrientation) { case TSensrvOrientationData::EOrientationDisplayUp: //90 iPictureOrientation = 0x000006; break; case TSensrvOrientationData::EOrientationDisplayDown: //-90 iPictureOrientation = 0x000008; break; case TSensrvOrientationData::EOrientationDisplayLeftUp: //180 iPictureOrientation = 0x000003; break; case TSensrvOrientationData::EOrientationDisplayRightUp: // 0 iPictureOrientation = 0x000001; break; default: iPictureOrientation = 0x000001; } modify->SetOrientationL(iPictureOrientation);
Regards,



