Hi Team
How can I flip the image so that it appears the same as when taking a picture with the front camera?
I'm using this example:
www.b4x.com
Thank you in advance
How can I flip the image so that it appears the same as when taking a picture with the front camera?
I'm using this example:
LLCamera - Low level camera access
iMedia library v1.10 includes a new type of object named LLCamera. LLCamera provides low level camera access, similar to B4A Camera library. If you just want to allow the user to take a picture then it will probably be better to use Camera instead of LLCamera. LLCamera allows you to embed the...

B4X:
Private Sub llc_PictureTaken (Data() As Byte)
If Data.Length = 0 Then Return
Dim In As InputStream
In.InitializeFromBytesArray(Data, 0, Data.Length)
Dim bmp As Bitmap
bmp.Initialize2(In)
In.Close
ImageView1.Bitmap = bmp
Log("Image size: " & bmp.Width & "x" & bmp.Height)
End Sub
Thank you in advance