*/
public boolean drawImage(Image img, int x, int y,
ImageObserver observer) {
- System.err.println("drawImage:x, y");
+ //System.err.println("drawImage:x, y");
final int width = img.getWidth(observer);
final int height = img.getHeight(observer);
writeClip(imclip);
Color c = getColor();
currentColour = new PDFColor(c.getRed(), c.getGreen(), c.getBlue());
- currentStream.write(currentColour.getColorSpaceOut(true));
- c = getBackground();
- PDFColor col = new PDFColor(c.getRed(), c.getGreen(), c.getBlue());
- currentStream.write(col.getColorSpaceOut(false));
+ currentStream.write(currentColour.getColorSpaceOut(false));
PDFNumber pdfNumber = new PDFNumber();
* <code>Graphics2D</code>.
*/
public GraphicsConfiguration getDeviceConfiguration() {
- System.out.println("getDeviceConviguration");
+ //System.out.println("getDeviceConviguration");
return GraphicsEnvironment.getLocalGraphicsEnvironment().
getDefaultScreenDevice().getDefaultConfiguration();
}