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

📄 pdfwriter.java

📁 一个java操作pdf文件的开发包,很好用的.
💻 JAVA
📖 第 1 页 / 共 5 页
字号:
/* * $Id: PdfWriter.java,v 1.56 2002/11/19 08:33:39 blowagie Exp $ * $Name:  $ * * Copyright 1999, 2000, 2001, 2002 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.pdf;import java.io.ByteArrayOutputStream;import java.io.OutputStream;import java.io.IOException;import java.util.ArrayList;import java.util.Iterator;import java.util.HashMap;import java.util.TreeMap;import com.lowagie.text.Document;import com.lowagie.text.Rectangle;import com.lowagie.text.Table;import com.lowagie.text.DocumentException;import com.lowagie.text.DocListener;import com.lowagie.text.DocWriter;import java.awt.Color;import com.lowagie.text.ExceptionConverter;/** * A <CODE>DocWriter</CODE> class for PDF. * <P> * When this <CODE>PdfWriter</CODE> is added * to a certain <CODE>PdfDocument</CODE>, the PDF representation of every Element * added to this Document will be written to the outputstream.</P> */public class PdfWriter extends DocWriter {        // inner classes        /**     * This class generates the structure of a PDF document.     * <P>     * This class covers the third section of Chapter 5 in the 'Portable Document Format     * Reference Manual version 1.3' (page 55-60). It contains the body of a PDF document     * (section 5.14) and it can also generate a Cross-reference Table (section 5.15).     *     * @see		PdfWriter     * @see		PdfObject     * @see		PdfIndirectObject     */        public class PdfBody {                // inner classes                /**         * <CODE>PdfCrossReference</CODE> is an entry in the PDF Cross-Reference table.         */                class PdfCrossReference {                        // membervariables                        /**	Byte offset in the PDF file. */            private int offset;                        /**	generation of the object. */            private int generation;                        // constructors            /**             * Constructs a cross-reference element for a PdfIndirectObject.             *             * @param	offset		byte offset of the object             * @param	generation	generationnumber of the object             */                        PdfCrossReference(int offset, int generation) {                this.offset = offset;                this.generation = generation;            }                        /**             * Constructs a cross-reference element for a PdfIndirectObject.             *             * @param	offset		byte offset of the object             */                        PdfCrossReference(int offset) {                this(offset, 0);            }                        /**             * Returns the PDF representation of this <CODE>PdfObject</CODE>.             *             * @return		an array of <CODE>byte</CODE>s             */                        byte[] toPdf(PdfWriter writer) {                // This code makes it more difficult to port the lib to JDK1.1.x:                // StringBuffer off = new StringBuffer("0000000000").append(offset);                // off.delete(0, off.length() - 10);                // StringBuffer gen = new StringBuffer("00000").append(generation);                // gen.delete(0, gen.length() - 5);                // so it was changed into this:                String s = "0000000000" + offset;                StringBuffer off = new StringBuffer(s.substring(s.length() - 10));                s = "00000" + generation;                StringBuffer gen = new StringBuffer(s.substring(s.length() - 5));                if (generation == 65535) {                    return getISOBytes(off.append(' ').append(gen).append(" f \n").toString());                }                return getISOBytes(off.append(' ').append(gen).append(" n \n").toString());            }        }                // membervariables                /**	Byte offset in the PDF file of the root object. */        private int rootOffset;                /** array containing the cross-reference table of the normal objects. */        private ArrayList xrefs;                /** the current byteposition in the body. */        private int position;        private PdfWriter writer;        private boolean simple;        // constructors                /**         * Constructs a new <CODE>PdfBody</CODE>.         *         * @param	offset	the offset of the body         */                PdfBody(int offset, PdfWriter writer) {            this(offset, writer, false);        }                PdfBody(int offset, PdfWriter writer, boolean simple) {            this.simple = simple;            xrefs = new ArrayList();            xrefs.add(new PdfCrossReference(0, 65535));            if (!simple)                xrefs.add(new PdfCrossReference(0));            position = offset;            this.writer = writer;        }                // methods                /**         * Adds a <CODE>PdfObject</CODE> to the body.         * <P>         * This methods creates a <CODE>PdfIndirectObject</CODE> with a         * certain number, containing the given <CODE>PdfObject</CODE>.         * It also adds a <CODE>PdfCrossReference</CODE> for this object         * to an <CODE>ArrayList</CODE> that will be used to build the         * Cross-reference Table.         *         * @param		object			a <CODE>PdfObject</CODE>         * @return		a <CODE>PdfIndirectObject</CODE>         */                PdfIndirectObject add(PdfObject object) {            PdfIndirectObject indirect = new PdfIndirectObject(size(), object, writer);            xrefs.add(new PdfCrossReference(position));            position += indirect.length();            return indirect;        }                /**         * Gets a PdfIndirectReference for an object that will be created in the future.         * @return a PdfIndirectReference         */                PdfIndirectReference getPdfIndirectReference() {            xrefs.add(new PdfCrossReference(0));            return new PdfIndirectReference(0, size() - 1);        }                int getIndirectReferenceNumber() {            xrefs.add(new PdfCrossReference(0));            return size() - 1;        }                /**         * Adds a <CODE>PdfObject</CODE> to the body given an already existing         * PdfIndirectReference.         * <P>         * This methods creates a <CODE>PdfIndirectObject</CODE> with the number given by         * <CODE>ref</CODE>, containing the given <CODE>PdfObject</CODE>.         * It also adds a <CODE>PdfCrossReference</CODE> for this object         * to an <CODE>ArrayList</CODE> that will be used to build the         * Cross-reference Table.         *         * @param		object			a <CODE>PdfObject</CODE>         * @param		ref		        a <CODE>PdfIndirectReference</CODE>         * @return		a <CODE>PdfIndirectObject</CODE>         */                PdfIndirectObject add(PdfObject object, PdfIndirectReference ref) {            PdfIndirectObject indirect = new PdfIndirectObject(ref.getNumber(), object, writer);            xrefs.set(ref.getNumber(), new PdfCrossReference(position));            position += indirect.length();            return indirect;        }                PdfIndirectObject add(PdfObject object, int refNumber) {            PdfIndirectObject indirect = new PdfIndirectObject(refNumber, object, writer);            xrefs.set(refNumber, new PdfCrossReference(position));            position += indirect.length();            return indirect;        }                /**         * Adds a <CODE>PdfResources</CODE> object to the body.         *         * @param		object			the <CODE>PdfResources</CODE>         * @return		a <CODE>PdfIndirectObject</CODE>         */                PdfIndirectObject add(PdfResources object) {            return add(object);        }                /**         * Adds a <CODE>PdfPages</CODE> object to the body.         *         * @param		object			the root of the document         * @return		a <CODE>PdfIndirectObject</CODE>         */                PdfIndirectObject add(PdfPages object) {            PdfIndirectObject indirect = new PdfIndirectObject(PdfWriter.ROOT, object, writer);            rootOffset = position;            position += indirect.length();            return indirect;        }                /**         * Returns the offset of the Cross-Reference table.         *         * @return		an offset         */                int offset() {            return position;        }                /**         * Returns the total number of objects contained in the CrossReferenceTable of this <CODE>Body</CODE>.         *         * @return	a number of objects         */                int size() {            return xrefs.size();        }                /**         * Returns the CrossReferenceTable of the <CODE>Body</CODE>.         *         * @return	an array of <CODE>byte</CODE>s         */                byte[] getCrossReferenceTable() {            ByteArrayOutputStream stream = new ByteArrayOutputStream();            try {                stream.write(getISOBytes("xref\n0 "));                stream.write(getISOBytes(String.valueOf(size())));                stream.write(getISOBytes("\n"));                if (!simple) {                    // we set the ROOT object                    xrefs.set(PdfWriter.ROOT, new PdfCrossReference(rootOffset));                }                // all the other objects                PdfCrossReference entry;                for (Iterator i = xrefs.iterator(); i.hasNext(); ) {

⌨️ 快捷键说明

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