Hi!
How can i correct rotate the pictures on my galaxy s3?
the problem is the exif.TAG_ORIENTATION, on galaxy s3 is ever = 6
exif.TAG_ORIENTATION = 6 on S3
i dont know why, and how can i rotate the picture taked in landscape?
i m using this for portrait
and is working, but to landscape i dont know when is left or right, the exif.TAG_ORIENTATION = 6 ever i dont know really what i make to fix this bug on S3
How can i correct rotate the pictures on my galaxy s3?
the problem is the exif.TAG_ORIENTATION, on galaxy s3 is ever = 6
exif.TAG_ORIENTATION = 6 on S3
i dont know why, and how can i rotate the picture taked in landscape?
i m using this for portrait
B4X:
exif.Initialize(fp, "tiradacamera.jpg")
Log(exif.getAttribute(exif.TAG_ORIENTATION)&"exif")
If exif.getAttribute(exif.TAG_ORIENTATION) = 6 Then
Log("passo no 6")
exif.setAttribute(exif.TAG_ORIENTATION, 1)
exif.saveAttributes
Dim rbmp As RSImageProcessing
rbmp.Initialize
puxabitmap = rbmp.rotateBitmap(puxabitmap, 90)
End If
and is working, but to landscape i dont know when is left or right, the exif.TAG_ORIENTATION = 6 ever i dont know really what i make to fix this bug on S3