?? pdfchunk.java
字號:
/* * $Id: PdfChunk.java,v 1.43 2002/11/19 08:33:35 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.awt.Color;import com.lowagie.text.Chunk;import com.lowagie.text.Font;import com.lowagie.text.Image;import com.lowagie.text.SplitCharacter;import java.util.HashMap;import java.util.Iterator;import com.lowagie.text.ExceptionConverter;/** * A <CODE>PdfChunk</CODE> is the PDF translation of a <CODE>Chunk</CODE>. * <P> * A <CODE>PdfChunk</CODE> is a <CODE>PdfString</CODE> in a certain * <CODE>PdfFont</CODE> and <CODE>Color</CODE>. * * @see PdfString * @see PdfFont * @see com.lowagie.text.Chunk * @see com.lowagie.text.Font */class PdfChunk implements SplitCharacter{/** The allowed attributes in variable <CODE>attributes</CODE>. */ private static final HashMap keysAttributes = new HashMap(); /** The allowed attributes in variable <CODE>noStroke</CODE>. */ private static final HashMap keysNoStroke = new HashMap(); static { keysAttributes.put(Chunk.ACTION, null); keysAttributes.put(Chunk.STRIKETHRU, null); keysAttributes.put(Chunk.UNDERLINE, null); keysAttributes.put(Chunk.REMOTEGOTO, null); keysAttributes.put(Chunk.LOCALGOTO, null); keysAttributes.put(Chunk.LOCALDESTINATION, null); keysAttributes.put(Chunk.GENERICTAG, null); keysAttributes.put(Chunk.NEWPAGE, null); keysAttributes.put(Chunk.IMAGE, null); keysAttributes.put(Chunk.BACKGROUND, null); keysAttributes.put(Chunk.PDFANNOTATION, null); keysNoStroke.put(Chunk.SUBSUPSCRIPT, null); keysNoStroke.put(Chunk.SPLITCHARACTER, null); keysNoStroke.put(Chunk.HYPHENATION, null); } // membervariables /** The value of this object. */ protected String value = PdfObject.NOTHING; /** The encoding. */ protected String encoding = PdfObject.ENCODING; /** The font for this <CODE>PdfChunk</CODE>. */ protected PdfFont font; protected SplitCharacter splitCharacter;/** * Metric attributes. * <P> * This attributes require the mesurement of characters widths when rendering * such as underline. */ protected HashMap attributes = new HashMap(); /** * Non metric attributes. * <P> * This attributes do not require the mesurement of characters widths when rendering * such as Color. */ protected HashMap noStroke = new HashMap(); /** <CODE>true</CODE> if the chunk split was cause by a newline. */ protected boolean newlineSplit; /** The image in this <CODE>PdfChunk</CODE>, if it has one */ protected Image image; /** The offset in the x direction for the image */ protected float offsetX; /** The offset in the y direction for the image */ protected float offsetY;/** Indicates if the height and offset of the Image has to be taken into account */ protected boolean changeLeading = false; // constructors /** * Constructs a <CODE>PdfChunk</CODE>-object. * * @param string the content of the <CODE>PdfChunk</CODE>-object * @param font the <CODE>PdfFont</CODE> * @param attributes the metrics attributes * @param noStroke the non metric attributes */ PdfChunk(String string, PdfChunk other) { value = string; this.font = other.font; this.attributes = other.attributes; this.noStroke = other.noStroke; Object obj[] = (Object[])attributes.get(Chunk.IMAGE); if (obj == null) image = null; else { image = (Image)obj[0]; offsetX = ((Float)obj[1]).floatValue(); offsetY = ((Float)obj[2]).floatValue(); changeLeading = ((Boolean)obj[3]).booleanValue(); } encoding = font.getFont().getEncoding(); splitCharacter = (SplitCharacter)noStroke.get(Chunk.SPLITCHARACTER); if (splitCharacter == null) splitCharacter = this; } /** * Constructs a <CODE>PdfChunk</CODE>-object. * * @param chunk the original <CODE>Chunk</CODE>-object * @param action the <CODE>PdfAction</CODE> if the <CODE>Chunk</CODE> comes from an <CODE>Anchor</CODE> */ PdfChunk(Chunk chunk, PdfAction action) { value = chunk.content(); Font f = chunk.font(); float size = f.size(); if (size == Font.UNDEFINED) size = 12; BaseFont bf = f.getBaseFont(); if (bf == null) { // translation of the font-family to a PDF font-family String fontName = BaseFont.HELVETICA; int style = f.style(); if (style == Font.UNDEFINED) { style = Font.NORMAL; } switch(f.family()) { case Font.COURIER: switch(style & Font.BOLDITALIC) { case Font.BOLD: fontName = BaseFont.COURIER_BOLD; break; case Font.ITALIC: fontName = BaseFont.COURIER_OBLIQUE; break; case Font.BOLDITALIC: fontName = BaseFont.COURIER_BOLDOBLIQUE; break; default: case Font.NORMAL: fontName = BaseFont.COURIER; break; } break; case Font.TIMES_NEW_ROMAN: switch(style & Font.BOLDITALIC) { case Font.BOLD: fontName = BaseFont.TIMES_BOLD; break; case Font.ITALIC: fontName = BaseFont.TIMES_ITALIC; break; case Font.BOLDITALIC: fontName = BaseFont.TIMES_BOLDITALIC; break; default: case Font.NORMAL: fontName = BaseFont.TIMES_ROMAN; break; } break; case Font.SYMBOL: fontName = BaseFont.SYMBOL; break; case Font.ZAPFDINGBATS: fontName = BaseFont.ZAPFDINGBATS; break; default: case Font.HELVETICA: switch(style & Font.BOLDITALIC) { case Font.BOLD: fontName = BaseFont.HELVETICA_BOLD; break; case Font.ITALIC: fontName = BaseFont.HELVETICA_OBLIQUE; break; case Font.BOLDITALIC: fontName = BaseFont.HELVETICA_BOLDOBLIQUE; break; default: case Font.NORMAL: fontName = BaseFont.HELVETICA; break; } break; } try { bf = BaseFont.createFont(fontName, BaseFont.WINANSI, false); } catch (Exception ee) { throw new ExceptionConverter(ee); } } font = new PdfFont(bf, size); // other style possibilities HashMap attr = chunk.getAttributes(); if (attr != null) { for (Iterator i = attr.keySet().iterator(); i.hasNext();) { Object name = i.next(); if (keysAttributes.containsKey(name)) { attributes.put(name, attr.get(name)); } else if (keysNoStroke.containsKey(name)) { noStroke.put(name, attr.get(name)); } } if ("".equals(attr.get(Chunk.GENERICTAG))) { attributes.put(Chunk.GENERICTAG, chunk.content()); } } if (f.isUnderlined()) attributes.put(Chunk.UNDERLINE, null); if (f.isStrikethru()) attributes.put(Chunk.STRIKETHRU, null); if (action != null) attributes.put(Chunk.ACTION, action); // the color can't be stored in a PdfFont noStroke.put(Chunk.COLOR, f.color()); noStroke.put(Chunk.ENCODING, font.getFont().getEncoding()); Object obj[] = (Object[])attributes.get(Chunk.IMAGE); if (obj == null) image = null; else { image = (Image)obj[0]; offsetX = ((Float)obj[1]).floatValue(); offsetY = ((Float)obj[2]).floatValue(); changeLeading = ((Boolean)obj[3]).booleanValue(); } font.setImage(image); encoding = font.getFont().getEncoding(); splitCharacter = (SplitCharacter)noStroke.get(Chunk.SPLITCHARACTER); if (splitCharacter == null) splitCharacter = this; } // methods protected int getWord(String text, int start) { int len = text.length(); while (start < len) { if (!Character.isLetter(text.charAt(start))) break; ++start; } return start; } /** * Splits this <CODE>PdfChunk</CODE> if it's too long for the given width. * <P> * Returns <VAR>null</VAR> if the <CODE>PdfChunk</CODE> wasn't truncated. * * @param width a given width * @return the <CODE>PdfChunk</CODE> that doesn't fit into the width. */ PdfChunk split(float width) { newlineSplit = false; if (image != null) { if (image.scaledWidth() > width) { PdfChunk pc = new PdfChunk(Chunk.OBJECT_REPLACEMENT_CHARACTER, this); value = ""; attributes = new HashMap(); image = null; font = PdfFont.getDefaultFont(); return pc; } else return null; } HyphenationEvent hyphenationEvent = (HyphenationEvent)noStroke.get(Chunk.HYPHENATION); int currentPosition = 0; int splitPosition = -1; float currentWidth = 0; // loop over all the characters of a string // or until the totalWidth is reached int lastSpace = -1; float lastSpaceWidth = 0; int length = value.length(); char character = 0; BaseFont ft = font.getFont(); if (ft.getFontType() == BaseFont.FONT_TYPE_CJK && ft.getUnicodeEquivalent(' ') != ' ') { while (currentPosition < length) { // the width of every character is added to the currentWidth char cidChar = value.charAt(currentPosition); character = ft.getUnicodeEquivalent(cidChar); // if a newLine or carriageReturn is encountered if (character == '\n') { newlineSplit = true; String returnValue = value.substring(currentPosition + 1); value = value.substring(0, currentPosition); if (value.length() < 1) { value = "\u0001"; } PdfChunk pc = new PdfChunk(returnValue, this); return pc; } currentWidth += font.width(cidChar); if (character == ' ') { lastSpace = currentPosition + 1; lastSpaceWidth = currentWidth; } if (currentWidth > width) break; // if a split-character is encountered, the splitPosition is altered if (splitCharacter.isSplitCharacter(character)) splitPosition = currentPosition + 1; currentPosition++; } } else { while (currentPosition < length) { // the width of every character is added to the currentWidth character = value.charAt(currentPosition); // if a newLine or carriageReturn is encountered if (character == '\r' || character == '\n') { newlineSplit = true; int inc = 1; if (character == '\r' && currentPosition + 1 < length && value.charAt(currentPosition + 1) == '\n') inc = 2; String returnValue = value.substring(currentPosition + inc); value = value.substring(0, currentPosition); if (value.length() < 1) {
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -