| Author |
Displaying thumb nail image
|
Mary Cole
Ranch Hand
Joined: Dec 02, 2000
Posts: 362
|
|
|
I have an HTMl page and I am storing the image as a blob in DB.While displaying on the browser I need to display the image as a thumb nail( not the original size).How do i do this using servlets
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56529
|
|
You could write a servlet that retrieves the image data from the database and resizes it to your desired "thumbnail" size using an imaging library (JAI perhaps?). The servlet would set the appropriate content type headers and return the resized image data as the response. The servlet would be referenced from the html page using the img tag just like any other image.
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
 |
|
|
subject: Displaying thumb nail image
|
|
|