I want take my Java Canvas and export as EPS. The methods are all set up to do this, so the final step is to have it accept my Compositing.
For drawing I do:
Composite originalComposite = g.getComposite();
int ACtype = AlphaComposite.SRC_OVER;
g.setComposite(AlphaComposite.getInstance(ACtype,(float)APar.instance().get("Det","Alpha").getD()));
fillPolygon(h[j], v[j], h[j].length);
g.setComposite(originalComposite);
and this is fine with exporting to PNG, or just drawing to the screen.
I've learned that this method isn't implemented for EpsGraphics2D however, and want to produce a similar effect.
Is there a way to achieve transparency (I'd settle for a fake transparency) when outputting to an EPS file?
Thanks,
Tom