Image scaledImage = image.getScaledInstance(width,height,height);
g.drawImage(scaledImage,x,y,null);
This is how I try to scaled my picture and show it right after. But it doesnt work. I dont see the picture on the screen.
Does anyone know what I do wrong?

