Is there an easy way to flip a canvas in Android? I cant seem to find anything that allows me to flip it vertically so that zero on the y-axis is the bottom of the phone screen instead of the top. It's OK if the solution isn't especially fast because I'm not doing anything computationally intense with the canvas.
Thanks in advance.
Try
canvas.scale(1f, -1f, width / 2f, height / 2f)
See Canvas.scale documentation. The first two parameters are the amount to scale by.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With