HUJIN SHIN
HUJIN SHIN

Reputation: 63

android camera preview flip horizontal

I'd like to flip the left and right, camera preview

enter image description here

Like the photo

What can I do?

I am currently using surfaceview

thanks

Upvotes: 0

Views: 1843

Answers (1)

Sabish.M
Sabish.M

Reputation: 2060

use canvas scale

canvas.scale((flipHorizontal ? -1 : 1), (flipVertical ? 1 : -1));

Upvotes: 1

Related Questions