このコードを使用して、画像を回転させることができます:
public static Bitmap RotateBitmap(Bitmap source, float angle) {
Matrix matrix = new Matrix();
matrix.postRotate(angle);
return Bitmap.createBitmap(source, 0, 0, source.getWidth(), source.getHeight(), matrix, true);
}
しかし、画像を水平または垂直に反転するにはどうすればよいですか?
cx,cy
は画像の中心です:
Xで反転:
matrix.postScale(-1, 1, cx, cy);
Yで反転:
matrix.postScale(1, -1, cx, cy);
Kotlinの短い拡張
private fun Bitmap.flip(x: Float, y: Float, cx: Float, cy: Float): Bitmap {
val matrix = Matrix().apply { postScale(x, y, cx, cy) }
return Bitmap.createBitmap(this, 0, 0, width, height, matrix, true)
}
そして使い方:
水平反転の場合:-
val cx = bitmap.width / 2f
val cy = bitmap.height / 2f
val flippedBitmap = bitmap.flip(-1f, 1f, cx, cy)
ivMainImage.setImageBitmap(flippedBitmap)
垂直フリップの場合:-
val cx = bitmap.width / 2f
val cy = bitmap.height / 2f
val flippedBitmap = bitmap.flip(1f, -1f, cx, cy)
ivMainImage.setImageBitmap(flippedBitmap)
コトリンの場合、
fun Bitmap.flip(): Bitmap {
val matrix = Matrix().apply { postScale(-1f, 1f, width/2f, width/2f) }
return Bitmap.createBitmap(this, 0, 0, width, height, matrix, true)
}
ビットマップbms(ソース)の水平および垂直フリップ。
Matrix matrix = new Matrix();
// for horizontal flip
matrix.setScale(-1, 1);
matrix.postTranslate( bms.getWidth(),0);
// for vertical flip
matrix.setScale( 1,-1);
matrix.postTranslate( 0, bms.getHeight());
Bitmap bm = Bitmap.createBitmap( bms, 0, 0, bms.getWidth(), bms.getHeight(), matrix, true);