I am trying to display a image from a database source in a pdf.
I GET the image using the tag:
'download.aspx' returns the image in the response using BinaryWrite() including the content type in the header (retrieved from the db).
The pdf displays JPGs correctly however GIFs display the alt text.
Other GIF appear in the document using
Any suggestions to solve this/explain wrong appreciated.
-sre
I GET the image using the tag:
<img src="http://<servername>/download.aspx?guid=<someguid>" alt="alt text"/>
'download.aspx' returns the image in the response using BinaryWrite() including the content type in the header (retrieved from the db).
The pdf displays JPGs correctly however GIFs display the alt text.
Other GIF appear in the document using
<img src="<servername>/image.gif" />
Any suggestions to solve this/explain wrong appreciated.
-sre