Re: Contributing to FOP (Re: representative example needed)

2005-02-10 Thread The Web Maestro
On Feb 10, 2005, at 8:45 AM, Dennis Myrén wrote: Hi again and thank you for your response. I will post the files as of our agreement as soon as possible. Just going to take the time to tidy the XSLT transform up and translate comments and such to English. I will let you know as I have posted th

RE: Contributing to FOP (Re: representative example needed)

2005-02-10 Thread Dennis Myrén
Hi again and thank you for your response.   I will post the files as of our agreement as soon as possible. Just going to take the time to tidy the XSLT transform up and translate comments and such to English.   I will let you know as I have posted the files.   Regards, Dennis JD

Re: ASCII-85 Encoding Not Working with JPEGs

2005-02-10 Thread Jeremias Maerki
Not having the ASCII-85 filter in place is perfectly legal for a PDF. I wonder why you need that filter so your process works. Either you're working with a bad PDF viewer/reader or you're doing something wrong in stream handling, for example using Readers and Writers instead of InputStreams and Out

ASCII-85 Encoding Not Working with JPEGs

2005-02-10 Thread Yakov Shafranovich
We have been using FOP in a servlet to generate PDF files out of a XSLT template. One of the problem we had is that the plain PDF output did not work until the ASCII-85 filter was enabled as follows: List list = new ArrayList(2); list.add("flate"); list.add("ascii-hex"); list.add("ascii-85"); Co