// =========================================================================== // Copyright (c) 1996 Mort Bay Consulting Pty. Ltd. All rights reserved. // $Id: Image.java,v 1.15.2.3 2003/06/04 04:47:37 starksm Exp $ // --------------------------------------------------------------------------- package org.mortbay.html; import java.io.File; import java.io.FileInputStream; import java.io.IOException; import org.mortbay.util.Code; /* ---------------------------------------------------------------- */ /** HTML Image Tag. * @see org.mortbay.html.Block * @version $Id: Image.java,v 1.15.2.3 2003/06/04 04:47:37 starksm Exp $ * @author Greg Wilkins */ public class Image extends Tag { /* ------------------------------------------------------------ */ public Image(String src) { super("img"); attribute("src",src); } /* ------------------------------------------------------------ */ /** Construct from GIF file. */ public Image(String dirname, String src) { super("img"); attribute("src",src); setSizeFromGif(dirname,src); } /* ------------------------------------------------------------ */ /** Construct from GIF file. */ public Image(File gif) { super("img"); attribute("src",gif.getName()); setSizeFromGif(gif); } /* ------------------------------------------------------------ */ public Image(String src,int width, int height, int border) { this(src); width(width); height(height); border(border); } /* ------------------------------------------------------------ */ public Image border(int b) { attribute("border",b); return this; } /* ------------------------------------------------------------ */ public Image alt(String alt) { attribute("alt",alt); return this; } /* ------------------------------------------------------------ */ /** Set the image size from the header of a GIF file. * @param dirname The directory name, expected to be in OS format * @param pathname The image path name relative to the directory. * Expected to be in WWW format (i.e. with slashes) * and will be converted to OS format. */ public Image setSizeFromGif(String dirname, String pathname) { String filename =dirname + pathname.replace('/',File.separatorChar); return setSizeFromGif(filename); } /* ------------------------------------------------------------ */ /** Set the image size from the header of a GIF file. */ public Image setSizeFromGif(String filename) { return setSizeFromGif(new File(filename)); } /* ------------------------------------------------------------ */ /** Set the image size from the header of a GIF file. */ public Image setSizeFromGif(File gif) { if (gif.canRead()) { try{ byte [] buf = new byte[10]; FileInputStream in = new FileInputStream(gif); if (in.read(buf,0,10)==10) { Code.debug("Image "+gif.getName()+ " is " + ((0x00ff&buf[7])*256+(0x00ff&buf[6])) + " x " + (((0x00ff&buf[9])*256+(0x00ff&buf[8])))); width((0x00ff&buf[7])*256+(0x00ff&buf[6])); height(((0x00ff&buf[9])*256+(0x00ff&buf[8]))); } } catch (IOException e){ Code.ignore(e); } } return this; } }