I have images that need to be passed to the client without referencing a static image file. These images are created dynamically and are byte arrays. I can convert these to whatever form they need to be in, except a static file.
What is my best option for embedding these images (PNG format) in a page sent to the client? I've thought about referencing another aspx page in the <IMG> tag that builds the image and returns it with an adjusted MIME type.
Am I on the right track, or is there an easier way to return an image without referencing a static file?
What is my best option for embedding these images (PNG format) in a page sent to the client? I've thought about referencing another aspx page in the <IMG> tag that builds the image and returns it with an adjusted MIME type.
Am I on the right track, or is there an easier way to return an image without referencing a static file?