If theImage is non-null, then this call is first forwarded to theImage.dispose(). Subsequent to this super.dispose() is invoked.
theImage
null
theImage.dispose()
super.dispose()
The results of referencing an image after a call to dispose() are undefined.
dispose()
135136137138139140141142143144145
params.add(interp); RenderedOp scaled = JAI.create("Affine", params, formatHints); g.drawRenderedImage(scaled, new AffineTransform()); scaled.dispose(); } g.setClip(oldClip); }