web-dev-qa-db-ja.com

Graphics2Dで画像を反転

私はしばらくの間、画像を反転する方法を理解しようとしましたが、まだ理解していません。

私はGraphics2Dを使用してImageを描画しています

g2d.drawImage(image, x, y, null)

画像を水平軸または垂直軸で反転させる方法が必要です。

必要に応じて、 github上の完全なソース を確認できます。

21
Fuze

から http://examples.javacodegeeks.com/desktop-Java/awt/image/flipping-a-buffered-image

// Flip the image vertically
AffineTransform tx = AffineTransform.getScaleInstance(1, -1);
tx.translate(0, -image.getHeight(null));
AffineTransformOp op = new AffineTransformOp(tx, AffineTransformOp.TYPE_NEAREST_NEIGHBOR);
image = op.filter(image, null);


// Flip the image horizontally
tx = AffineTransform.getScaleInstance(-1, 1);
tx.translate(-image.getWidth(null), 0);
op = new AffineTransformOp(tx, AffineTransformOp.TYPE_NEAREST_NEIGHBOR);
image = op.filter(image, null);

// Flip the image vertically and horizontally; equivalent to rotating the image 180 degrees
tx = AffineTransform.getScaleInstance(-1, -1);
tx.translate(-image.getWidth(null), -image.getHeight(null));
op = new AffineTransformOp(tx, AffineTransformOp.TYPE_NEAREST_NEIGHBOR);
image = op.filter(image, null);
56
I82Much

最も簡単画像を反転する方法は、画像を負にスケーリングすることです。例:

g2.drawImage(image, x + width, y, -width, height, null);

水平方向に反転します。これは垂直に反転します:

g2.drawImage(image, x, y + height, width, -height, null);
30
hsirkar

Graphicsで変換を使用できます。これにより、画像が正しく回転します。以下は、これを実現するために使用できるサンプルコードです。

AffineTransform affineTransform = new AffineTransform(); 
//rotate the image by 45 degrees 
affineTransform.rotate(Math.toRadians(45), x, y); 
g2d.drawImage(image, m_affineTransform, null); 
3
GETah

適切にスケーリングされていることを確認するには、画像の幅と高さを知る必要があります。

int width = image.getWidth(); int height = image.getHeight();

次に、それを描く必要があります:

//Flip the image both horizontally and vertically
g2d.drawImage(image, x+(width/2), y+(height/2), -width, -height, null);
//Flip the image horizontally
g2d.drawImage(image, x+(width/2), y-(height/2), -width, height, null);
//Flip the image vertically
g2d.drawImage(image, x-(width/2), y+(height/2), width, -height, null);

とにかく、これが私のやり方です。

0

画像の垂直方向に180度回転

File file = new File(file_Name);
FileInputStream fis = new FileInputStream(file);  
BufferedImage bufferedImage = ImageIO.read(fis); //reading the image file         
AffineTransform tx = AffineTransform.getScaleInstance(-1, -1);
tx.translate(-bufferedImage.getWidth(null), -bufferedImage.getHeight(null));
AffineTransformOp op = new AffineTransformOp(tx, AffineTransformOp.TYPE_NEAREST_NEIGHBOR);
bufferedImage = op.filter(bufferedImage, null);
ImageIO.write(bufferedImage, "jpg", new File(file_Name));
0
Yash