Originally Posted by
Mumpy Zinu
I have process button in my web page by clicking the process button the java coding run in back-end and show the output as resultant image in the web page
To show an image, you must output in the HTML page the classic <img> tag ... there's nothing more at this level.
The real important point is the url of the image, that can be:
- a fixed url to a file on the server, where you write the image file in another moment (for example when the HTML page is requested).
- a url to some "dynamic" resource (typically a Servlet, or other "action" depending on the used framework) that generates the image stream "on the fly".