hallo ich lese bmp aus, um sie in PNG zu konvertieren.
mein Problem ist eben das die PNG files nun leer sind, also ohne Inhalt. Was fehlt denn da noch ?
danke schon mal im Voraus
PHP:
pictarget=new ImageIcon("c:/test/rad"+z+".bmp").getImage();
Image org=pictarget;
double new_im_w= 200;
double new_im_h= 200;
int int_im_w = (int) new_im_w;
int int_im_h = (int) new_im_h;
Image scaledImage = org.getScaledInstance(int_im_w,int_im_h, Image.SCALE_SMOOTH);
BufferedImage outImg = new BufferedImage(int_im_w, int_im_h,
BufferedImage.TYPE_INT_ARGB);
Graphics g = outImg.getGraphics();
g.drawImage(scaledImage, 0, 0, null);
g.dispose();
try {
ImageIO.write(outImg, "png", new File("c:/test/radl"+z+".png"));
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
mein Problem ist eben das die PNG files nun leer sind, also ohne Inhalt. Was fehlt denn da noch ?
danke schon mal im Voraus