通過使用此代碼,我們可以旋轉的圖像翻轉的位圖圖像:水平或垂直
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);
}
但我們如何可以水平或垂直翻轉圖像?
你如何找到圖像的中心? –
@MayurRokade'source.getWidth()/ 2f''source.getHeight()/ 2f' – weston