J'ai mis une couleur de fond de JPanel
au blanc. Cependant, lorsque je l'enregistre en JPG ou dans un autre format d'image, l'arrière-plan est noir. J'ai mis ce code TYPE_INT_ARGB
mais ça ne marche pas. Comment puis-je définir l'arrière-plan à l'autre couleur? par exemple. bleu, blanc etc.Pourquoi ai-je un fond noir lorsque je sauvegarde une image en JPG?
public void paintComponent(Graphics g) {
int width = getWidth();
int height = getHeight();
// Create a buffered image in which to draw
BufferedImage bufferedImage = new BufferedImage(width, height, BufferedImage.TYPE_INT_ARGB);
// Create a graphics contents on the buffered image
Graphics2D g2d = bufferedImage.createGraphics();
g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
g2d.setStroke(new BasicStroke(1)); // set the thickness of polygon line
g2d.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_OVER, 1.00f));
g2d.setPaint(Color.black);//color of the polygon line
g2d.setBackground(Color.WHITE);
//draw polygon
for (Polygon triangle : triangles)
g2d.drawPolygon(triangle);
try {
File file = new File("newimage.jpg");
ImageIO.write(bufferedImage, "jpg", file);
} catch (IOException e) {
}
}//public void paint(Graphics g)
Cela n'a aucun sens d'utiliser 'TYPE_INT_ARGB' avec un fichier JPEG. Le "A" signifie "alpha" ou "transparence", mais les fichiers JPEG n'ont pas de transparence. Essayez d'utiliser des fichiers PNG à la place. – wchargin