devo creare una serie di file immagine......inizialmente li ho salvati come file .jpg......questo è il codice......
Graphics2D g2=null;
BufferedImage myImage = new BufferedImage(720,560,BufferedImage.TYPE_INT_BGR);
g2 = myImage.createGraphics();
g2.fillRect(0, 0, 720, 560);
.....creo g2
.....
//Salvataggio su file
try{ OutputStream out = new FileOutputStream("SlideJpg" + File.separator + "Slide" + indice + ".jpg");
JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);
encoder.encode(myImage);
out.close();
}
stavo provando a salvarli come .gif o come .png ma non riesco a trovare i metodi adatti per questi due formati....c'è qualche suggerimento?grazie
ciao