Almost suspected it....I believe it's a bug in the ASCII-85 encoder
which I've fixed in the redesign but haven't been able to upload, yet.
I'll be able to fix the bug for the maintenance branch later this week.

In the meantime you can locally patch PSRenderer.java:

Change "/ASCII85Decode" to "/ASCIIHexDecode":

            if (img instanceof JpegImage) {
                write("  /DataSource currentfile /ASCIIHexDecode filter 
/DCTDecode filter");

and "new ASCII85OutputStream" to "new ASCIIHexOutputStream":

                OutputStream out = this.out;
                out = new ASCIIHexOutputStream(out);
                if (!(img instanceof JpegImage)) {

That makes the generated files a bit bigger, but at least they work.

On 01.07.2003 16:58:17 Chris Bowditch wrote:
> thanks for your quick reply. I have attached the fo and two images to this 
> e-mail. Looking at the generated postscript there is a bunch of ZZZZZ 
> characters in the image data. I was wondering if this could be a 
> transparency issue or something like that. Your thoughts would be greatly 
> appreciated.



Jeremias Maerki


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to