Project Stuff
Instructions and Procedures
Project-Relevant Documents
- Comic book archive file format
- How to store/retrieve images (i.e., comic pages):
- Store the images in a DB table using the BLOB datatype (http://dev.mysql.com/doc/refman/5.5/en/blob.html).
- Create a servlet whose sole job is to take requests for images and respond with image data (not HTML). Here are a couple examples: one and another.
- In a normal servlet/JSP, use img tag sources refer to the URL of the retrieve-image servlet (with additional parameters specifying the particular image).
Sample Comics