Hallo zusammen,
ich habe ein Problem, so bald ich die Größe eines Bildes geändert habe, wird das Bild komplett schwarz angezeigt. Die Größe wird zwar geändert, aber ist halt schwarz. Sowohl png als auch jgp.
Jemand eine Idee?
Gruß
ich habe ein Problem, so bald ich die Größe eines Bildes geändert habe, wird das Bild komplett schwarz angezeigt. Die Größe wird zwar geändert, aber ist halt schwarz. Sowohl png als auch jgp.
Java:
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import javax.imageio.ImageIO;
public class ImageWriter {
public static void main(String[] args) {
try {
BufferedImage image = ImageIO.read( new File( "src/ship.gif" ) );
image = new BufferedImage(125, 125, BufferedImage.TYPE_INT_RGB);
ImageIO.write( image, "jpg", new File( "shipCopy.jpg"));
} catch( IOException ex){
ex.printStackTrace();
}
}
}
Jemand eine Idee?
Gruß