⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 image.java

📁 处理PDF
💻 JAVA
📖 第 1 页 / 共 4 页
字号:
/* * $Id: Image.java 3537 2008-07-08 08:53:00Z blowagie $ * * Copyright 1999, 2000, 2001, 2002 by Bruno Lowagie. * * The contents of this file are subject to the Mozilla Public License Version 1.1 * (the "License"); you may not use this file except in compliance with the License. * You may obtain a copy of the License at http://www.mozilla.org/MPL/ * * Software distributed under the License is distributed on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License * for the specific language governing rights and limitations under the License. * * The Original Code is 'iText, a free JAVA-PDF library'. * * The Initial Developer of the Original Code is Bruno Lowagie. Portions created by * the Initial Developer are Copyright (C) 1999, 2000, 2001, 2002 by Bruno Lowagie. * All Rights Reserved. * Co-Developer of the code is Paulo Soares. Portions created by the Co-Developer * are Copyright (C) 2000, 2001, 2002 by Paulo Soares. All Rights Reserved. * * Contributor(s): all the names of the contributors are added in the source code * where applicable. * * Alternatively, the contents of this file may be used under the terms of the * LGPL license (the "GNU LIBRARY GENERAL PUBLIC LICENSE"), in which case the * provisions of LGPL are applicable instead of those above.  If you wish to * allow use of your version of this file only under the terms of the LGPL * License and not to allow others to use your version of this file under * the MPL, indicate your decision by deleting the provisions above and * replace them with the notice and other provisions required by the LGPL. * If you do not delete the provisions above, a recipient may use your version * of this file under either the MPL or the GNU LIBRARY GENERAL PUBLIC LICENSE. * * This library is free software; you can redistribute it and/or modify it * under the terms of the MPL as stated above or under the terms of the GNU * Library General Public License as published by the Free Software Foundation; * either version 2 of the License, or any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Library general Public License for more * details. * * If you didn't download this code from the following link, you should check if * you aren't using an obsolete version: * http://www.lowagie.com/iText/ */package com.lowagie.text;import java.awt.Graphics2D;import java.awt.color.ICC_Profile;import java.awt.image.BufferedImage;import java.io.IOException;import java.io.InputStream;import java.lang.reflect.Constructor;import java.net.MalformedURLException;import java.net.URL;import java.util.ArrayList;import com.lowagie.text.pdf.PRIndirectReference;import com.lowagie.text.pdf.PdfArray;import com.lowagie.text.pdf.PdfContentByte;import com.lowagie.text.pdf.PdfDictionary;import com.lowagie.text.pdf.PdfIndirectReference;import com.lowagie.text.pdf.PdfName;import com.lowagie.text.pdf.PdfNumber;import com.lowagie.text.pdf.PdfOCG;import com.lowagie.text.pdf.PdfObject;import com.lowagie.text.pdf.PdfReader;import com.lowagie.text.pdf.PdfStream;import com.lowagie.text.pdf.PdfTemplate;import com.lowagie.text.pdf.PdfWriter;import com.lowagie.text.pdf.RandomAccessFileOrArray;import com.lowagie.text.pdf.codec.BmpImage;import com.lowagie.text.pdf.codec.CCITTG4Encoder;import com.lowagie.text.pdf.codec.GifImage;import com.lowagie.text.pdf.codec.PngImage;import com.lowagie.text.pdf.codec.TiffImage;/** * An <CODE>Image</CODE> is the representation of a graphic element (JPEG, PNG * or GIF) that has to be inserted into the document *  * @see Element * @see Rectangle */public abstract class Image extends Rectangle {	// static final membervariables	/** this is a kind of image alignment. */	public static final int DEFAULT = 0;	/** this is a kind of image alignment. */	public static final int RIGHT = 2;	/** this is a kind of image alignment. */	public static final int LEFT = 0;	/** this is a kind of image alignment. */	public static final int MIDDLE = 1;	/** this is a kind of image alignment. */	public static final int TEXTWRAP = 4;	/** this is a kind of image alignment. */	public static final int UNDERLYING = 8;	/** This represents a coordinate in the transformation matrix. */	public static final int AX = 0;	/** This represents a coordinate in the transformation matrix. */	public static final int AY = 1;	/** This represents a coordinate in the transformation matrix. */	public static final int BX = 2;	/** This represents a coordinate in the transformation matrix. */	public static final int BY = 3;	/** This represents a coordinate in the transformation matrix. */	public static final int CX = 4;	/** This represents a coordinate in the transformation matrix. */	public static final int CY = 5;	/** This represents a coordinate in the transformation matrix. */	public static final int DX = 6;	/** This represents a coordinate in the transformation matrix. */	public static final int DY = 7;	/** type of image */	public static final int ORIGINAL_NONE = 0;	/** type of image */	public static final int ORIGINAL_JPEG = 1;	/** type of image */	public static final int ORIGINAL_PNG = 2;	/** type of image */	public static final int ORIGINAL_GIF = 3;	/** type of image */	public static final int ORIGINAL_BMP = 4;	/** type of image */	public static final int ORIGINAL_TIFF = 5;	/** type of image */	public static final int ORIGINAL_WMF = 6;	/** type of image */    public static final int ORIGINAL_PS = 7;	/** type of image */	public static final int ORIGINAL_JPEG2000 = 8;    // member variables	/** The image type. */	protected int type;	/** The URL of the image. */	protected URL url;	/** The raw data of the image. */	protected byte rawData[];	/** The bits per component of the raw image. It also flags a CCITT image. */	protected int bpc = 1;		/** The template to be treated as an image. */	protected PdfTemplate template[] = new PdfTemplate[1];	/** The alignment of the Image. */	protected int alignment;	/** Text that can be shown instead of the image. */	protected String alt;	/** This is the absolute X-position of the image. */	protected float absoluteX = Float.NaN;	/** This is the absolute Y-position of the image. */	protected float absoluteY = Float.NaN;	/** This is the width of the image without rotation. */	protected float plainWidth;	/** This is the width of the image without rotation. */	protected float plainHeight;	/** This is the scaled width of the image taking rotation into account. */	protected float scaledWidth;	/** This is the original height of the image taking rotation into account. */	protected float scaledHeight;	    /**     * The compression level of the content streams.     * @since	2.1.3     */    protected int compressionLevel = PdfStream.DEFAULT_COMPRESSION;	/** an iText attributed unique id for this image. */	protected Long mySerialId = getSerialId();	// image from file or URL		/**	 * Constructs an <CODE>Image</CODE> -object, using an <VAR>url </VAR>.	 * 	 * @param url	 *            the <CODE>URL</CODE> where the image can be found.	 */	public Image(URL url) {		super(0, 0);		this.url = url;		this.alignment = DEFAULT;		rotationRadians = 0;	}	/**	 * Gets an instance of an Image.	 * 	 * @param url	 *            an URL	 * @return an Image	 * @throws BadElementException	 * @throws MalformedURLException	 * @throws IOException	 */	public static Image getInstance(URL url) throws BadElementException,			MalformedURLException, IOException {		InputStream is = null;		try {			is = url.openStream();			int c1 = is.read();			int c2 = is.read();			int c3 = is.read();			int c4 = is.read();			is.close();			is = null;			if (c1 == 'G' && c2 == 'I' && c3 == 'F') {				GifImage gif = new GifImage(url);				Image img = gif.getImage(1);				return img;			}			if (c1 == 0xFF && c2 == 0xD8) {				return new Jpeg(url);			}			if (c1 == 0x00 && c2 == 0x00 && c3 == 0x00 && c4 == 0x0c) {				return new Jpeg2000(url);			}			if (c1 == 0xff && c2 == 0x4f && c3 == 0xff && c4 == 0x51) {				return new Jpeg2000(url);			}			if (c1 == PngImage.PNGID[0] && c2 == PngImage.PNGID[1]					&& c3 == PngImage.PNGID[2] && c4 == PngImage.PNGID[3]) {				return PngImage.getImage(url);			}			if (c1 == 0xD7 && c2 == 0xCD) {				return new ImgWMF(url);			}			if (c1 == 'B' && c2 == 'M') {				return  BmpImage.getImage(url);			}			if ((c1 == 'M' && c2 == 'M' && c3 == 0 && c4 == 42)					|| (c1 == 'I' && c2 == 'I' && c3 == 42 && c4 == 0)) {				RandomAccessFileOrArray ra = null;				try {					if (url.getProtocol().equals("file")) {						String file = url.getFile();                        file = Utilities.unEscapeURL(file);						ra = new RandomAccessFileOrArray(file);					} else						ra = new RandomAccessFileOrArray(url);					Image img = TiffImage.getTiffImage(ra, 1);					img.url = url;					return img;				} finally {					if (ra != null)						ra.close();				}			}			throw new IOException(url.toString()					+ " is not a recognized imageformat.");		} finally {			if (is != null) {				is.close();			}		}	}	/**	 * Gets an instance of an Image.	 * 	 * @param filename	 *            a filename	 * @return an object of type <CODE>Gif</CODE>,<CODE>Jpeg</CODE> or	 *         <CODE>Png</CODE>	 * @throws BadElementException	 * @throws MalformedURLException	 * @throws IOException	 */	public static Image getInstance(String filename)			throws BadElementException, MalformedURLException, IOException {		return getInstance(Utilities.toURL(filename));	}    	/**	 * gets an instance of an Image	 * 	 * @param imgb	 *            raw image date	 * @return an Image object	 * @throws BadElementException	 * @throws MalformedURLException	 * @throws IOException	 */	public static Image getInstance(byte imgb[]) throws BadElementException,			MalformedURLException, IOException {		InputStream is = null;		try {			is = new java.io.ByteArrayInputStream(imgb);			int c1 = is.read();			int c2 = is.read();			int c3 = is.read();			int c4 = is.read();			is.close();			is = null;			if (c1 == 'G' && c2 == 'I' && c3 == 'F') {				GifImage gif = new GifImage(imgb);				return gif.getImage(1);			}			if (c1 == 0xFF && c2 == 0xD8) {				return new Jpeg(imgb);			}			if (c1 == 0x00 && c2 == 0x00 && c3 == 0x00 && c4 == 0x0c) {				return new Jpeg2000(imgb);			}			if (c1 == 0xff && c2 == 0x4f && c3 == 0xff && c4 == 0x51) {				return new Jpeg2000(imgb);			}			if (c1 == PngImage.PNGID[0] && c2 == PngImage.PNGID[1]					&& c3 == PngImage.PNGID[2] && c4 == PngImage.PNGID[3]) {				return PngImage.getImage(imgb);			}			if (c1 == 0xD7 && c2 == 0xCD) {				return new ImgWMF(imgb);			}			if (c1 == 'B' && c2 == 'M') {				return BmpImage.getImage(imgb);			}			if ((c1 == 'M' && c2 == 'M' && c3 == 0 && c4 == 42)					|| (c1 == 'I' && c2 == 'I' && c3 == 42 && c4 == 0)) {				RandomAccessFileOrArray ra = null;				try {					ra = new RandomAccessFileOrArray(imgb);					Image img = TiffImage.getTiffImage(ra, 1);                    if (img.getOriginalData() == null)                        img.setOriginalData(imgb);					return img;				} finally {					if (ra != null)						ra.close();				}			}			throw new IOException(					"The byte array is not a recognized imageformat.");		} finally {			if (is != null) {				is.close();			}		}	}	/**	 * Gets an instance of an Image in raw mode.	 * 	 * @param width	 *            the width of the image in pixels	 * @param height	 *            the height of the image in pixels	 * @param components	 *            1,3 or 4 for GrayScale, RGB and CMYK	 * @param data	 *            the image data	 * @param bpc	 *            bits per component	 * @return an object of type <CODE>ImgRaw</CODE>	 * @throws BadElementException	 *             on error	 */	public static Image getInstance(int width, int height, int components,			int bpc, byte data[]) throws BadElementException {		return Image.getInstance(width, height, components, bpc, data, null);	}	/**	 * Creates an Image with CCITT G3 or G4 compression. It assumes that the	 * data bytes are already compressed.	 * 	 * @param width	 *            the exact width of the image	 * @param height	 *            the exact height of the image	 * @param reverseBits	 *            reverses the bits in <code>data</code>. Bit 0 is swapped	 *            with bit 7 and so on	 * @param typeCCITT	 *            the type of compression in <code>data</code>. It can be	 *            CCITTG4, CCITTG31D, CCITTG32D	 * @param parameters	 *            parameters associated with this stream. Possible values are	 *            CCITT_BLACKIS1, CCITT_ENCODEDBYTEALIGN, CCITT_ENDOFLINE and	 *            CCITT_ENDOFBLOCK or a combination of them	 * @param data	 *            the image data	 * @return an Image object	 * @throws BadElementException	 *             on error	 */	public static Image getInstance(int width, int height, boolean reverseBits,			int typeCCITT, int parameters, byte[] data)			throws BadElementException {		return Image.getInstance(width, height, reverseBits, typeCCITT,				parameters, data, null);	}	/**	 * Creates an Image with CCITT G3 or G4 compression. It assumes that the	 * data bytes are already compressed.	 * 	 * @param width	 *            the exact width of the image	 * @param height	 *            the exact height of the image	 * @param reverseBits	 *            reverses the bits in <code>data</code>. Bit 0 is swapped	 *            with bit 7 and so on	 * @param typeCCITT	 *            the type of compression in <code>data</code>. It can be	 *            CCITTG4, CCITTG31D, CCITTG32D	 * @param parameters	 *            parameters associated with this stream. Possible values are	 *            CCITT_BLACKIS1, CCITT_ENCODEDBYTEALIGN, CCITT_ENDOFLINE and	 *            CCITT_ENDOFBLOCK or a combination of them	 * @param data	 *            the image data	 * @param transparency	 *            transparency information in the Mask format of the image	 *            dictionary	 * @return an Image object	 * @throws BadElementException	 *             on error	 */	public static Image getInstance(int width, int height, boolean reverseBits,			int typeCCITT, int parameters, byte[] data, int transparency[])			throws BadElementException {		if (transparency != null && transparency.length != 2)			throw new BadElementException(					"Transparency length must be equal to 2 with CCITT images");		Image img = new ImgCCITT(width, height, reverseBits, typeCCITT,				parameters, data);		img.transparency = transparency;		return img;	}	/**	 * Gets an instance of an Image in raw mode.	 * 	 * @param width	 *            the width of the image in pixels	 * @param height	 *            the height of the image in pixels	 * @param components	 *            1,3 or 4 for GrayScale, RGB and CMYK	 * @param data	 *            the image data	 * @param bpc	 *            bits per component	 * @param transparency

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -