I think your best approach is:
Have your "base" page produce an html output with 5 <img> tags in it
e.g.
<html>
<img src="<url to image producer">>
...
</html>
Then write an image producing component to "catch" those urls.
Probably the easiest thing to do is use IExternal just so you can control
the URL yourself, but it's not the only approach.
Basically the thing to remember is that dynamic image production on
the web is a bass-ackward two (or three) step process.
First you reply with the HTML and embed a link back to the image. If
you want an image *map* you have to generate the image at this point, use it
to spin up an image map, and the cache it in the session for later use.
Then you reply to the <img> request and actually reply with a binary
stream of png/jpeg/gif/whatever.
--- Pat
> -----Original Message-----
> From: Oleksandr Yuzikov [mailto:[EMAIL PROTECTED]
> Sent: Monday, July 18, 2005 10:24 PM
> To: [email protected]
> Subject: Multiple dynamic images on the same page
>
> Hi.
>
>
>
> I stuck with a problem to represent some images (say 5) on single page.
> Images stored in the database. I did like in the tapestry "workbench"
> example with a chart but it doesn't work with more than one image. So does
> anyone have some experience to solve such of problem?
>
>
>
> Thanks.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]