312313314315316317318319
"created with createImage(producer)"); } /* this method is needed by printing code */ public ColorModel getColorModel() { ImageRepresentation imageRep = getImageRep(); return imageRep.getColorModel(); }
318319320321322323324325
return imageRep.getColorModel(); } /* this method is needed by printing code */ public BufferedImage getBufferedImage() { ImageRepresentation imageRep = getImageRep(); return imageRep.getBufferedImage(); }
324325326327328329330331
return imageRep.getBufferedImage(); } public void setAccelerationPriority(float priority) { super.setAccelerationPriority(priority); ImageRepresentation imageRep = getImageRep(); imageRep.setAccelerationPriority(accelerationPriority); }