SimpleCropView
SimpleCropView copied to clipboard
Mirroring (flip) image
Could you please add flip/mirroring the image (horizontally and vertically) like the rotating?
mCropView.flipImage(CropImageView.FlipModes.HORIZONTAL); mCropView.flipImage(CropImageView.FlipModes.VERTICAL);
Perhaps it is just a few lines of code like: Matrix matrix = new Matrix(); matrix.setRotate(degrees); matrix.postScale(flipHorizontally ? -1 : 1, flipVertically ? -1 : 1);
I think so
@braintrapp Can you please write a little more detailed answer if possible..