Is there any way to get part of a component image ? This is the way to copy entire component image to a buffered image :
Comp.paint(bi.createGraphics());
If I do this, I have to create a large buffered image and then cut off the part of image that I need. I wonder if it is possible to only copy the part of a component image to small buffered image ?
Jay