> g.drawImage(scaled_image, null, null);
Here's your problem. I'm not sure why you're trying to use a null kernel op
(getting all black pixels from a null kernel op actually sounds correct to
me), but try using a different paint method from Graphics:
boolean drawImage(Image img, int x,int y, ImageObserver observer)
Draws as much of the specified image as is currently available. The image is
drawn with its top-left corner at (x, y) in this graphics context's
coordinate space. Transparent pixels in the image do not affect whatever
pixels are already there.
so that your call would be g.drawImage(scaled_image, 0, 0, null)
James
===========================================================================
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JAVA2D-INTEREST". For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".