AndroidでBitmapを回転させるには? // ビットマップの幅と高さ int width = 240; int height = 480; // オリジナルのビットマップ作成 Bitmap bmpOrig = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888); // 回転マトリックス作成(90度回転) Matrix mat = new Matrix(); mat.postRotate(90); // 回転したビットマップを作成 Bitmap bmp = Bitmap.createBitmap(bmpOrig, 0, 0, width, height, mat, true); createBitmap()を二回使っているけど、1回目と2回目は引数が違うところがポイント。2回目でオリジナルのビットマップを回転させたビ