getScaledInstance produces an Image out of my BufferedImage.
It does not produced a BufferedImage I can simply cast.
What is the best to way to either convert it back to a BufferedImage
or to get myself a scaled BufferedImage?

Signature
Canadian Mind Products, Roedy Green.
Coaching, problem solving, economical contract programming.
See http://mindprod.com/jgloss/jgloss.html for The Java Glossary.
>getScaledInstance produces an Image out of my BufferedImage.
>It does not produced a BufferedImage I can simply cast.
>
>What is the best to way to either convert it back to a BufferedImage
>or to get myself a scaled BufferedImage?
After some horsing around here is what appears to work, but my choice
of type TYPE_INT_BGR was arbitrary. It seems goofy to change from
JPEG to bit map to convert back to JPEG map gain.
// magnify which has side effect of turning back to plain Image.
Image magnifiedImage
= image.getScaledInstance( magnifiedImageWidth,
magnifiedImageHeight,
BufferedImage.SCALE_SMOOTH);
// convert back to BufferedImage
BufferedImage bufferedImage = new BufferedImage (
magnifiedImageWidth,
magnifiedImageHeight,
BufferedImage.TYPE_INT_BGR);
bufferedImage.createGraphics().drawImage(
magnifiedImage, 0, 0, this /* observer */ );
// write out the BufferedImage as a JPEG
ImageIO.write( bufferedImage,
"JPEG" /* format desired */ ,
file );
.

Signature
Canadian Mind Products, Roedy Green.
Coaching, problem solving, economical contract programming.
See http://mindprod.com/jgloss/jgloss.html for The Java Glossary.
Knute Johnson - 13 May 2004 18:53 GMT
>>getScaledInstance produces an Image out of my BufferedImage.
>>It does not produced a BufferedImage I can simply cast.
[quoted text clipped - 29 lines]
>
> .
Roedy:
You can scale it with an AffineTransform.

Signature
Knute Johnson
email s/nospam/knute/
Molon labe...