view - ANDROID STUDIO: Where is the picture taken with Camera API stored locally? (NOT IN SD CARD) -
when run function in camera api
mcamera.takepicture(null, null, mpicture)
i wonder picture "stored", , how can access it. dont mean stored in saved in sd card, kinda stored in variable.
the picture "frozen" on screen after take picture function. want "frozen" picture bitmap, dont know how. or view, matter. please me that?
friendly regards,
mathias carlsen
i wonder picture "stored",
it not stored @ all.
how can access it
the byte[]
of jpeg handed camera.picturecallback
(mpicture
in above code snippet).
the picture "frozen" on screen after take picture function
it more preview stopped, until start again.
i want "frozen" picture bitmap, dont know how.
it should equivalent actual picture taken. welcome register preview callbacks preview frames handed you.
Comments
Post a Comment