Re: embedding image-stream in pdf

2002-08-20 Thread KOZLOV Roman
Hi Frank, There was a problem with images URL's in generated pdf. The matter is that relative URL's don't work. You have to put complete absolute URL's (like http://host... etc.). I've used host matcher in the following pipeline to get full path to images as a parameter in XSLT:

Re: embedding image-stream in pdf

2002-08-20 Thread KOZLOV Roman
Sorry, the sitemap snippet is wrong (forgot request action to get {context}) . The right one is the following: map:match pattern=print_lubricant.pdf map:match type=host pattern=* map:act type=request map:generate src=some_source.xml/ map:transform

AW: embedding image-stream in pdf

2002-08-20 Thread Przybilla, Frank
and then acess it. Frank -Ursprungliche Nachricht- Von: KOZLOV Roman [mailto:[EMAIL PROTECTED]] Gesendet: Dienstag, 20. August 2002 09:03 An: [EMAIL PROTECTED] Betreff: Re: embedding image-stream in pdf Sorry, the sitemap snippet is wrong (forgot request action to get {context}) . The right one

Re: AW: embedding image-stream in pdf

2002-08-20 Thread KOZLOV Roman
: embedding image-stream in pdf Sorry, the sitemap snippet is wrong (forgot request action to get {context}) . The right one is the following: map:match pattern=print_lubricant.pdf map:match type=host pattern=* map:act type=request map:generate src=some_source.xml

embedding image-stream in pdf

2002-08-19 Thread Przybilla, Frank
Dear All, I have the following scenario and I want to know if this can be solved with fop: There is a servlet which can produce images (png, jpeg, etc.) as ouput streams which are not materialized to files. How can this servlet be used to embed these images in a pdf file with fop? I have