comparison servlet/src/digilib/image/DocuImage.java @ 533:87cb3dc2aa12 digilibPDF

improved pdf generation (not done yet)
author robcast
date Fri, 09 Apr 2010 18:22:05 +0200
parents 9cedd170b581
children e758a49258e8
comparison
equal deleted inserted replaced
532:6d66b4ed7f07 533:87cb3dc2aa12
218 218
219 /** 219 /**
220 * Returns a list of supported image formats 220 * Returns a list of supported image formats
221 */ 221 */
222 public Iterator<String> getSupportedFormats(); 222 public Iterator<String> getSupportedFormats();
223
224 /**
225 * returns the underlying image as java.awt.Image (if possible, or null)
226 * @return
227 */
228 public java.awt.Image getAwtImage();
223 229
224 } 230 }