setRGB
とBufferedImage
を使用してJavaで画像を回転しようとしましたが、奇妙な結果が得られます。誰にも理由がありますか? LEFT側でBufferedImage setRGB strange result
BufferedImage pic1 = ImageIO.read(new File("Images/Input-1.bmp"));
int width = pic1.getWidth(null);
int height = pic1.getHeight(null);
double angle = Math.toRadians(90);
double sin = Math.sin(angle);
double cos = Math.cos(angle);
double x0 = 0.5 * (width - 1); // point to rotate about
double y0 = 0.5 * (height - 1); // center of image
BufferedImage pic2 = pic1;
// rotation
for (int x = 0; x < width; x++) {
for (int y = 0; y < height; y++) {
double a = x - x0;
double b = y - y0;
int xx = (int) (+a * cos - b * sin + x0);
int yy = (int) (+a * sin + b * cos + y0);
if (xx >= 0 && xx < width && yy >= 0 && yy < height) {
pic2.setRGB(x, y, pic1.getRGB(xx, yy));
}
}
}
ImageIO.write(pic2, "bmp", new File("Images/Output2.bmp"));
オリジナルの絵で、RIGHT側にそれは私の結果です。どのように私はそれを修正することができます誰も考えを持っている?
ありがとうございました。
イメージを回転することはできません。別の回転イメージを作成します。イメージを90度回転させる場合は、回転計算を行う必要はありません。 x座標を新しいy座標にコピーし、y座標を新しいx座標にコピーするだけです。 –