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
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
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
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