Michael Wechner wrote:

I have seen one can use either
<fo:external-graphic src="url('http://www.wyona.com/images/wyona_gross.gif <http://www.wyona.com/images/wyona_gross.gif>')"/>

Not really. The above is not valid XML and XSL-FO must first be well-formed XML to be parsable. Instead use the following line:

<fo:external-graphic src="url('http://www.wyona.com/images/wyona_gross.gif')"/>


to resolve images, but what if my images are located in some other "repository"?
Can one specify a custom resolver (delivering some InputStream) for FOP?
(Btw, I am using FOP 0.93)

There's a new version just released: FOP 0.94 that fixes a zillion bugs and adds (quite) some features. Afaik, you should be able to use a URIResolver to resolve your own specific URI Schemes. of course, the URIs must still be real URIs.

As an alternative you can think of using a Catalog.

Cheers,
-- Abel Braaksma

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

Reply via email to