Flip vertically an Android Canvas
Try
canvas.scale(1f, -1f, width / 2f, height / 2f)
See Canvas.scale documentation. The first two parameters are the amount to scale by.
Try
canvas.scale(1f, -1f, width / 2f, height / 2f)
See Canvas.scale documentation. The first two parameters are the amount to scale by.