Re: How to prevent SVG Image from caching

2005-05-12 Thread Jeremias Maerki
No idea. The error message would indicate that the image contained in the URL is not a valid JPEG file. But maybe there's something else that's not right. Can you send me your FO file to test? On 12.05.2005 08:27:58 Amita Rathore wrote: I followed your steps and its not working I get exception

Re: How to prevent SVG Image from caching

2005-05-12 Thread Jeremias Maerki
You're welcome. The only way to verify is to decode the URL and save the extracted data to a file which will then be a normal JPEG file (or whatever). To do this, just create a small program which builds a java.net.URL instance from the data URL, then get the InputStream by calling

Re: How to prevent SVG Image from caching

2005-05-12 Thread Daniel Noll
Jeremias Maerki wrote: You're welcome. The only way to verify is to decode the URL and save the extracted data to a file which will then be a normal JPEG file (or whatever). To do this, just create a small program which builds a java.net.URL instance from the data URL, then get the InputStream by