3738394041424344
public class GEnginePS extends GEngineGraphics { protected XJGraphics2DPS g2d; public GEnginePS() { g2d = new XJGraphics2DPS(); g2d.setMargins(10, 10); }
336337338339340341342343344345
return image; //makeColorTransparent(image, Color.white); } public String getEPS() { XJGraphics2DPS g2d = new XJGraphics2DPS(); g2d.setMargins(6, 6); rootElement.drawRecursive(g2d); return g2d.getPSText(); }