Does Java provide a mechanism for generating dynamic images over the web?
Such as the ones shown here
Thanks
:afrog:
Printable View
Does Java provide a mechanism for generating dynamic images over the web?
Such as the ones shown here
Thanks
:afrog:
Sure. Create them with java.awt.Graphics and friends. Serialize them using javax.imageio.*. As the underlying OutputStream, use the one provided to you by the servlet API. Add the appropriate HTTP header and you're good to go.