Browse Source

REPORT-11624 Excel和Word导出的html解析(third部分)

research/11.0
kerry 6 years ago
parent
commit
9ed5213d06
  1. 44
      fine-itext-old/src/com/fr/third/com/lowagie/text/Chunk.java
  2. 33
      fine-itext-old/src/com/fr/third/com/lowagie/text/Font.java
  3. 409
      fine-itext-old/src/com/fr/third/com/lowagie/text/Image.java
  4. 323
      fine-itext-old/src/com/fr/third/com/lowagie/text/List.java
  5. 94
      fine-itext-old/src/com/fr/third/com/lowagie/text/Paragraph.java
  6. 2
      fine-itext-old/src/com/fr/third/com/lowagie/text/factories/ElementFactory.java
  7. 200
      fine-itext-old/src/com/fr/third/com/lowagie/text/html/CSS.java
  8. 108
      fine-itext-old/src/com/fr/third/com/lowagie/text/html/CSSUtils.java
  9. 55
      fine-itext-old/src/com/fr/third/com/lowagie/text/html/IndentAttribute.java
  10. 125
      fine-itext-old/src/com/fr/third/com/lowagie/text/html/Markup.java
  11. 84
      fine-itext-old/src/com/fr/third/com/lowagie/text/html/ParseIndentAttrUtils.java
  12. 4
      fine-itext-old/src/com/fr/third/com/lowagie/text/html/WebColors.java
  13. 67
      fine-itext-old/src/com/fr/third/com/lowagie/text/html/simpleparser/ChainedProperties.java
  14. 82
      fine-itext-old/src/com/fr/third/com/lowagie/text/html/simpleparser/FactoryProperties.java
  15. 101
      fine-itext-old/src/com/fr/third/com/lowagie/text/html/simpleparser/HTMLWorker.java
  16. 45
      fine-itext-old/src/com/fr/third/com/lowagie/text/html/simpleparser/HtmlConstants.java
  17. 76
      fine-itext-old/src/com/fr/third/com/lowagie/text/html/simpleparser/IncCell.java
  18. 100
      fine-itext-old/src/com/fr/third/com/lowagie/text/html/simpleparser/IncTable.java
  19. 58
      fine-itext-old/src/com/fr/third/com/lowagie/text/pdf/BorderStyle.java
  20. 269
      fine-itext-old/src/com/fr/third/com/lowagie/text/pdf/PdfPCell.java
  21. 432
      fine-itext-old/src/com/fr/third/com/lowagie/text/pdf/PdfPRow.java
  22. 642
      fine-itext-old/src/com/fr/third/com/lowagie/text/pdf/PdfPTable.java
  23. 54
      fine-itext-old/src/com/fr/third/com/lowagie/text/pdf/TableProperties.java
  24. 3
      fine-itext-old/src/com/fr/third/com/lowagie/text/rtf/text/RtfChunk.java

44
fine-itext-old/src/com/fr/third/com/lowagie/text/Chunk.java

@ -49,16 +49,18 @@
package com.fr.third.com.lowagie.text; package com.fr.third.com.lowagie.text;
import java.awt.Color;
import java.net.URL;
import java.util.ArrayList;
import java.util.HashMap;
import com.fr.third.com.lowagie.text.pdf.HyphenationEvent; import com.fr.third.com.lowagie.text.pdf.HyphenationEvent;
import com.fr.third.com.lowagie.text.pdf.PdfAction; import com.fr.third.com.lowagie.text.pdf.PdfAction;
import com.fr.third.com.lowagie.text.pdf.PdfAnnotation; import com.fr.third.com.lowagie.text.pdf.PdfAnnotation;
import com.fr.third.com.lowagie.text.pdf.PdfContentByte; import com.fr.third.com.lowagie.text.pdf.PdfContentByte;
import com.fr.third.com.lowagie.text.pdf.draw.DrawInterface; import com.fr.third.com.lowagie.text.pdf.draw.DrawInterface;
import sun.font.FontDesignMetrics;
import java.awt.Color;
import java.awt.FontMetrics;
import java.net.URL;
import java.util.ArrayList;
import java.util.HashMap;
/** /**
* This is the smallest significant part of text that can be added to a * This is the smallest significant part of text that can be added to a
@ -277,7 +279,7 @@ public class Chunk implements Element {
* true if the leading has to be adapted to the image * true if the leading has to be adapted to the image
*/ */
public Chunk(Image image, float offsetX, float offsetY, public Chunk(Image image, float offsetX, float offsetY,
boolean changeLeading) { boolean changeLeading) {
this(OBJECT_REPLACEMENT_CHARACTER, new Font()); this(OBJECT_REPLACEMENT_CHARACTER, new Font());
setAttribute(IMAGE, new Object[] { image, new Float(offsetX), setAttribute(IMAGE, new Object[] { image, new Float(offsetX),
new Float(offsetY), Boolean.valueOf(changeLeading) }); new Float(offsetY), Boolean.valueOf(changeLeading) });
@ -394,9 +396,9 @@ public class Chunk implements Element {
if (getImage() != null) { if (getImage() != null) {
return getImage().getScaledWidth(); return getImage().getScaledWidth();
} }
return font.getCalculatedBaseFont(true).getWidthPoint(getContent(), java.awt.Font awtFont = new java.awt.Font(font.getFontName(), font.getStyle(), (int)font.getSize());
font.getCalculatedSize()) FontMetrics metrics = FontDesignMetrics.getMetrics(awtFont);
* getHorizontalScaling(); return metrics.stringWidth(getContent())* getHorizontalScaling();
} }
// attributes // attributes
@ -441,7 +443,7 @@ public class Chunk implements Element {
* @return this <CODE>Chunk</CODE> * @return this <CODE>Chunk</CODE>
*/ */
private Chunk setAttribute(String name, Object obj) { public Chunk setAttribute(String name, Object obj) {
if (attributes == null) if (attributes == null)
attributes = new HashMap(); attributes = new HashMap();
attributes.put(name, obj); attributes.put(name, obj);
@ -523,7 +525,7 @@ public class Chunk implements Element {
* @return this <CODE>Chunk</CODE> * @return this <CODE>Chunk</CODE>
*/ */
public Chunk setUnderline(Color color, float thickness, float thicknessMul, public Chunk setUnderline(Color color, float thickness, float thicknessMul,
float yPosition, float yPositionMul, int cap) { float yPosition, float yPositionMul, int cap) {
if (attributes == null) if (attributes == null)
attributes = new HashMap(); attributes = new HashMap();
Object obj[] = { Object obj[] = {
@ -590,18 +592,18 @@ public class Chunk implements Element {
/** /**
* Sets the color of the background <CODE>Chunk</CODE>. * Sets the color of the background <CODE>Chunk</CODE>.
* *
* @param color * @param background
* the color of the background * the color of the background
* @return this <CODE>Chunk</CODE> * @return this <CODE>Chunk</CODE>
*/ */
public Chunk setBackground(Color color) { public Chunk setBackground(String background) {
return setBackground(color, 0, 0, 0, 0); return setBackground(background, 0, 0, 0, 0);
} }
/** /**
* Sets the color and the size of the background <CODE>Chunk</CODE>. * Sets the color and the size of the background <CODE>Chunk</CODE>.
* *
* @param color * @param background
* the color of the background * the color of the background
* @param extraLeft * @param extraLeft
* increase the size of the rectangle in the left * increase the size of the rectangle in the left
@ -613,9 +615,9 @@ public class Chunk implements Element {
* increase the size of the rectangle in the top * increase the size of the rectangle in the top
* @return this <CODE>Chunk</CODE> * @return this <CODE>Chunk</CODE>
*/ */
public Chunk setBackground(Color color, float extraLeft, float extraBottom, public Chunk setBackground(String background, float extraLeft, float extraBottom,
float extraRight, float extraTop) { float extraRight, float extraTop) {
return setAttribute(BACKGROUND, new Object[] { color, return setAttribute(BACKGROUND, new Object[] { background,
new float[] { extraLeft, extraBottom, extraRight, extraTop } }); new float[] { extraLeft, extraBottom, extraRight, extraTop } });
} }
@ -642,7 +644,7 @@ public class Chunk implements Element {
* @return this <CODE>Chunk</CODE> * @return this <CODE>Chunk</CODE>
*/ */
public Chunk setTextRenderMode(int mode, float strokeWidth, public Chunk setTextRenderMode(int mode, float strokeWidth,
Color strokeColor) { Color strokeColor) {
return setAttribute(TEXTRENDERMODE, new Object[] { new Integer(mode), return setAttribute(TEXTRENDERMODE, new Object[] { new Integer(mode),
new Float(strokeWidth), strokeColor }); new Float(strokeWidth), strokeColor });
} }
@ -843,7 +845,7 @@ public class Chunk implements Element {
} }
/** /**
* @see com.fr.third.com.lowagie.text.Element#isContent() * @see Element#isContent()
* @since iText 2.0.8 * @since iText 2.0.8
*/ */
public boolean isContent() { public boolean isContent() {
@ -851,7 +853,7 @@ public class Chunk implements Element {
} }
/** /**
* @see com.fr.third.com.lowagie.text.Element#isNestable() * @see Element#isNestable()
* @since iText 2.0.8 * @since iText 2.0.8
*/ */
public boolean isNestable() { public boolean isNestable() {

33
fine-itext-old/src/com/fr/third/com/lowagie/text/Font.java

@ -350,35 +350,7 @@ public class Font implements Comparable {
* @return the familyname * @return the familyname
*/ */
public String getFamilyname() { public String getFamilyname() {
String tmp = "unknown"; return getFontName();
switch (getFamily()) {
case Font.COURIER:
return FontFactory.COURIER;
case Font.HELVETICA:
return FontFactory.HELVETICA;
case Font.TIMES_ROMAN:
return FontFactory.TIMES_ROMAN;
case Font.SYMBOL:
return FontFactory.SYMBOL;
case Font.ZAPFDINGBATS:
return FontFactory.ZAPFDINGBATS;
default:
if (baseFont != null) {
String[][] names = baseFont.getFamilyFontName();
for (int i = 0; i < names.length; i++) {
if ("0".equals(names[i][2])) {
return names[i][3];
}
if ("1033".equals(names[i][2])) {
tmp = names[i][3];
}
if ("".equals(names[i][2])) {
tmp = names[i][3];
}
}
}
}
return tmp;
} }
/** /**
@ -389,9 +361,10 @@ public class Font implements Comparable {
* A <CODE>String</CODE> representing a certain font-family. * A <CODE>String</CODE> representing a certain font-family.
*/ */
public void setFamily(String family) { public void setFamily(String family) {
this.family = getFamilyIndex(family); this.fontName = family;
} }
/** /**
* Translates a <CODE>String</CODE> -value of a certain family into the * Translates a <CODE>String</CODE> -value of a certain family into the
* index that is used for this family in this class. * index that is used for this family in this class.

409
fine-itext-old/src/com/fr/third/com/lowagie/text/Image.java

@ -49,15 +49,6 @@
package com.fr.third.com.lowagie.text; package com.fr.third.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 com.fr.third.com.lowagie.text.pdf.PRIndirectReference; import com.fr.third.com.lowagie.text.pdf.PRIndirectReference;
import com.fr.third.com.lowagie.text.pdf.PdfArray; import com.fr.third.com.lowagie.text.pdf.PdfArray;
import com.fr.third.com.lowagie.text.pdf.PdfContentByte; import com.fr.third.com.lowagie.text.pdf.PdfContentByte;
@ -79,6 +70,15 @@ import com.fr.third.com.lowagie.text.pdf.codec.JBIG2Image;
import com.fr.third.com.lowagie.text.pdf.codec.PngImage; import com.fr.third.com.lowagie.text.pdf.codec.PngImage;
import com.fr.third.com.lowagie.text.pdf.codec.TiffImage; import com.fr.third.com.lowagie.text.pdf.codec.TiffImage;
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;
/** /**
* An <CODE>Image</CODE> is the representation of a graphic element (JPEG, PNG * An <CODE>Image</CODE> is the representation of a graphic element (JPEG, PNG
* or GIF) that has to be inserted into the document * or GIF) that has to be inserted into the document
@ -155,7 +155,7 @@ public abstract class Image extends Rectangle {
public static final int ORIGINAL_WMF = 6; public static final int ORIGINAL_WMF = 6;
/** type of image */ /** type of image */
public static final int ORIGINAL_PS = 7; public static final int ORIGINAL_PS = 7;
/** type of image */ /** type of image */
public static final int ORIGINAL_JPEG2000 = 8; public static final int ORIGINAL_JPEG2000 = 8;
@ -166,7 +166,7 @@ public abstract class Image extends Rectangle {
*/ */
public static final int ORIGINAL_JBIG2 = 9; public static final int ORIGINAL_JBIG2 = 9;
// member variables // member variables
/** The image type. */ /** The image type. */
protected int type; protected int type;
@ -207,17 +207,27 @@ public abstract class Image extends Rectangle {
/** This is the original height of the image taking rotation into account. */ /** This is the original height of the image taking rotation into account. */
protected float scaledHeight; protected float scaledHeight;
/** /**
* The compression level of the content streams. * The compression level of the content streams.
* @since 2.1.3 * @since 2.1.3
*/ */
protected int compressionLevel = PdfStream.DEFAULT_COMPRESSION; protected int compressionLevel = PdfStream.DEFAULT_COMPRESSION;
/** an iText attributed unique id for this image. */ /** an iText attributed unique id for this image. */
protected Long mySerialId = getSerialId(); protected Long mySerialId = getSerialId();
// image from file or URL // image from file or URL
private String srcString = "";
public String getSrcString() {
return srcString;
}
public void setSrcString(String srcString) {
this.srcString = srcString;
}
/** /**
* Constructs an <CODE>Image</CODE> -object, using an <VAR>url </VAR>. * Constructs an <CODE>Image</CODE> -object, using an <VAR>url </VAR>.
* *
@ -288,7 +298,7 @@ public abstract class Image extends Rectangle {
try { try {
if (url.getProtocol().equals("file")) { if (url.getProtocol().equals("file")) {
String file = url.getFile(); String file = url.getFile();
file = Utilities.unEscapeURL(file); file = Utilities.unEscapeURL(file);
ra = new RandomAccessFileOrArray(file); ra = new RandomAccessFileOrArray(file);
} else } else
ra = new RandomAccessFileOrArray(url); ra = new RandomAccessFileOrArray(url);
@ -308,20 +318,22 @@ public abstract class Image extends Rectangle {
if (url.getProtocol().equals("file")) { if (url.getProtocol().equals("file")) {
String file = url.getFile(); String file = url.getFile();
file = Utilities.unEscapeURL(file); file = Utilities.unEscapeURL(file);
ra = new RandomAccessFileOrArray(file); ra = new RandomAccessFileOrArray(file);
} else } else
ra = new RandomAccessFileOrArray(url); ra = new RandomAccessFileOrArray(url);
Image img = JBIG2Image.getJbig2Image(ra, 1); Image img = JBIG2Image.getJbig2Image(ra, 1);
img.url = url; img.url = url;
return img; return img;
} finally { } finally {
if (ra != null) if (ra != null)
ra.close(); ra.close();
} }
} }
throw new IOException(url.toString() throw new IOException(url.toString()
+ " is not a recognized imageformat."); + " is not a recognized imageformat.");
} finally { }catch (Exception e){
return null;
}finally {
if (is != null) { if (is != null) {
is.close(); is.close();
} }
@ -395,8 +407,8 @@ public abstract class Image extends Rectangle {
try { try {
ra = new RandomAccessFileOrArray(imgb); ra = new RandomAccessFileOrArray(imgb);
Image img = TiffImage.getTiffImage(ra, 1); Image img = TiffImage.getTiffImage(ra, 1);
if (img.getOriginalData() == null) if (img.getOriginalData() == null)
img.setOriginalData(imgb); img.setOriginalData(imgb);
return img; return img;
} finally { } finally {
if (ra != null) if (ra != null)
@ -461,7 +473,7 @@ public abstract class Image extends Rectangle {
* on error * on error
*/ */
public static Image getInstance(int width, int height, int components, public static Image getInstance(int width, int height, int components,
int bpc, byte data[]) throws BadElementException { int bpc, byte data[]) throws BadElementException {
return Image.getInstance(width, height, components, bpc, data, null); return Image.getInstance(width, height, components, bpc, data, null);
} }
@ -503,7 +515,7 @@ public abstract class Image extends Rectangle {
* on error * on error
*/ */
public static Image getInstance(int width, int height, boolean reverseBits, public static Image getInstance(int width, int height, boolean reverseBits,
int typeCCITT, int parameters, byte[] data) int typeCCITT, int parameters, byte[] data)
throws BadElementException { throws BadElementException {
return Image.getInstance(width, height, reverseBits, typeCCITT, return Image.getInstance(width, height, reverseBits, typeCCITT,
parameters, data, null); parameters, data, null);
@ -537,7 +549,7 @@ public abstract class Image extends Rectangle {
* on error * on error
*/ */
public static Image getInstance(int width, int height, boolean reverseBits, public static Image getInstance(int width, int height, boolean reverseBits,
int typeCCITT, int parameters, byte[] data, int transparency[]) int typeCCITT, int parameters, byte[] data, int transparency[])
throws BadElementException { throws BadElementException {
if (transparency != null && transparency.length != 2) if (transparency != null && transparency.length != 2)
throw new BadElementException( throw new BadElementException(
@ -569,7 +581,7 @@ public abstract class Image extends Rectangle {
* on error * on error
*/ */
public static Image getInstance(int width, int height, int components, public static Image getInstance(int width, int height, int components,
int bpc, byte data[], int transparency[]) int bpc, byte data[], int transparency[])
throws BadElementException { throws BadElementException {
if (transparency != null && transparency.length != components * 2) if (transparency != null && transparency.length != components * 2)
throw new BadElementException( throw new BadElementException(
@ -599,7 +611,7 @@ public abstract class Image extends Rectangle {
return new ImgTemplate(template); return new ImgTemplate(template);
} }
// images from a java.awt.Image // images from a java.awt.Image
/** /**
* Gets an instance of an Image from a java.awt.Image. * Gets an instance of an Image from a java.awt.Image.
@ -618,7 +630,7 @@ public abstract class Image extends Rectangle {
* on error * on error
*/ */
public static Image getInstance(java.awt.Image image, java.awt.Color color, public static Image getInstance(java.awt.Image image, java.awt.Color color,
boolean forceBW) throws BadElementException, IOException { boolean forceBW) throws BadElementException, IOException {
if(image instanceof BufferedImage){ if(image instanceof BufferedImage){
BufferedImage bi = (BufferedImage) image; BufferedImage bi = (BufferedImage) image;
@ -811,97 +823,97 @@ public abstract class Image extends Rectangle {
return getInstance(new PdfContentByte(writer), awtImage, quality); return getInstance(new PdfContentByte(writer), awtImage, quality);
} }
/** /**
* Gets an instance of a Image from a java.awt.Image. * Gets an instance of a Image from a java.awt.Image.
* The image is added as a JPEG with a user defined quality. * The image is added as a JPEG with a user defined quality.
* *
* @param cb * @param cb
* the <CODE>PdfContentByte</CODE> object to which the image will be added * the <CODE>PdfContentByte</CODE> object to which the image will be added
* @param awtImage * @param awtImage
* the <CODE>java.awt.Image</CODE> to convert * the <CODE>java.awt.Image</CODE> to convert
* @param quality * @param quality
* a float value between 0 and 1 * a float value between 0 and 1
* @return an object of type <CODE>PdfTemplate</CODE> * @return an object of type <CODE>PdfTemplate</CODE>
* @throws BadElementException * @throws BadElementException
* on error * on error
* @throws IOException * @throws IOException
*/ */
public static Image getInstance(PdfContentByte cb, java.awt.Image awtImage, float quality) throws BadElementException, IOException { public static Image getInstance(PdfContentByte cb, java.awt.Image awtImage, float quality) throws BadElementException, IOException {
java.awt.image.PixelGrabber pg = new java.awt.image.PixelGrabber(awtImage, java.awt.image.PixelGrabber pg = new java.awt.image.PixelGrabber(awtImage,
0, 0, -1, -1, true); 0, 0, -1, -1, true);
try { try {
pg.grabPixels(); pg.grabPixels();
} catch (InterruptedException e) { } catch (InterruptedException e) {
throw new IOException( throw new IOException(
"java.awt.Image Interrupted waiting for pixels!"); "java.awt.Image Interrupted waiting for pixels!");
} }
if ((pg.getStatus() & java.awt.image.ImageObserver.ABORT) != 0) { if ((pg.getStatus() & java.awt.image.ImageObserver.ABORT) != 0) {
throw new IOException("java.awt.Image fetch aborted or errored"); throw new IOException("java.awt.Image fetch aborted or errored");
} }
int w = pg.getWidth(); int w = pg.getWidth();
int h = pg.getHeight(); int h = pg.getHeight();
PdfTemplate tp = cb.createTemplate(w, h); PdfTemplate tp = cb.createTemplate(w, h);
Graphics2D g2d = tp.createGraphics(w, h, true, quality); Graphics2D g2d = tp.createGraphics(w, h, true, quality);
g2d.drawImage(awtImage, 0, 0, null); g2d.drawImage(awtImage, 0, 0, null);
g2d.dispose(); g2d.dispose();
return getInstance(tp); return getInstance(tp);
} }
// image from indirect reference // image from indirect reference
/** /**
* Holds value of property directReference. * Holds value of property directReference.
* An image is embedded into a PDF as an Image XObject. * An image is embedded into a PDF as an Image XObject.
* This object is referenced by a PdfIndirectReference object. * This object is referenced by a PdfIndirectReference object.
*/ */
private PdfIndirectReference directReference; private PdfIndirectReference directReference;
/** /**
* Getter for property directReference. * Getter for property directReference.
* @return Value of property directReference. * @return Value of property directReference.
*/ */
public PdfIndirectReference getDirectReference() { public PdfIndirectReference getDirectReference() {
return this.directReference; return this.directReference;
} }
/** /**
* Setter for property directReference. * Setter for property directReference.
* @param directReference New value of property directReference. * @param directReference New value of property directReference.
*/ */
public void setDirectReference(PdfIndirectReference directReference) { public void setDirectReference(PdfIndirectReference directReference) {
this.directReference = directReference; this.directReference = directReference;
} }
/** /**
* Reuses an existing image. * Reuses an existing image.
* @param ref the reference to the image dictionary * @param ref the reference to the image dictionary
* @throws BadElementException on error * @throws BadElementException on error
* @return the image * @return the image
*/ */
public static Image getInstance(PRIndirectReference ref) throws BadElementException { public static Image getInstance(PRIndirectReference ref) throws BadElementException {
PdfDictionary dic = (PdfDictionary)PdfReader.getPdfObjectRelease(ref); PdfDictionary dic = (PdfDictionary)PdfReader.getPdfObjectRelease(ref);
int width = ((PdfNumber)PdfReader.getPdfObjectRelease(dic.get(PdfName.WIDTH))).intValue(); int width = ((PdfNumber)PdfReader.getPdfObjectRelease(dic.get(PdfName.WIDTH))).intValue();
int height = ((PdfNumber)PdfReader.getPdfObjectRelease(dic.get(PdfName.HEIGHT))).intValue(); int height = ((PdfNumber)PdfReader.getPdfObjectRelease(dic.get(PdfName.HEIGHT))).intValue();
Image imask = null; Image imask = null;
PdfObject obj = dic.get(PdfName.SMASK); PdfObject obj = dic.get(PdfName.SMASK);
if (obj != null && obj.isIndirect()) { if (obj != null && obj.isIndirect()) {
imask = getInstance((PRIndirectReference)obj); imask = getInstance((PRIndirectReference)obj);
} }
else { else {
obj = dic.get(PdfName.MASK); obj = dic.get(PdfName.MASK);
if (obj != null && obj.isIndirect()) { if (obj != null && obj.isIndirect()) {
PdfObject obj2 = PdfReader.getPdfObjectRelease(obj); PdfObject obj2 = PdfReader.getPdfObjectRelease(obj);
if (obj2 instanceof PdfDictionary) if (obj2 instanceof PdfDictionary)
imask = getInstance((PRIndirectReference)obj); imask = getInstance((PRIndirectReference)obj);
} }
} }
Image img = new ImgRaw(width, height, 1, 1, null); Image img = new ImgRaw(width, height, 1, 1, null);
img.imageMask = imask; img.imageMask = imask;
img.directReference = ref; img.directReference = ref;
return img; return img;
} }
// copy constructor // copy constructor
/** /**
* Constructs an <CODE>Image</CODE> -object, using an <VAR>url </VAR>. * Constructs an <CODE>Image</CODE> -object, using an <VAR>url </VAR>.
@ -913,6 +925,7 @@ public abstract class Image extends Rectangle {
super(image); super(image);
this.type = image.type; this.type = image.type;
this.url = image.url; this.url = image.url;
this.srcString = image.srcString;
this.rawData = image.rawData; this.rawData = image.rawData;
this.bpc = image.bpc; this.bpc = image.bpc;
this.template = image.template; this.template = image.template;
@ -926,12 +939,12 @@ public abstract class Image extends Rectangle {
this.scaledHeight = image.scaledHeight; this.scaledHeight = image.scaledHeight;
this.mySerialId = image.mySerialId; this.mySerialId = image.mySerialId;
this.directReference = image.directReference; this.directReference = image.directReference;
this.rotationRadians = image.rotationRadians; this.rotationRadians = image.rotationRadians;
this.initialRotation = image.initialRotation; this.initialRotation = image.initialRotation;
this.indentationLeft = image.indentationLeft; this.indentationLeft = image.indentationLeft;
this.indentationRight = image.indentationRight; this.indentationRight = image.indentationRight;
this.spacingBefore = image.spacingBefore; this.spacingBefore = image.spacingBefore;
this.spacingAfter = image.spacingAfter; this.spacingAfter = image.spacingAfter;
@ -989,7 +1002,7 @@ public abstract class Image extends Rectangle {
} }
/** /**
* @see com.fr.third.com.lowagie.text.Element#isNestable() * @see Element#isNestable()
* @since iText 2.0.8 * @since iText 2.0.8
*/ */
public boolean isNestable() { public boolean isNestable() {
@ -1310,7 +1323,7 @@ public abstract class Image extends Rectangle {
* the height to fit * the height to fit
*/ */
public void scaleToFit(float fitWidth, float fitHeight) { public void scaleToFit(float fitWidth, float fitHeight) {
scalePercent(100); scalePercent(100);
float percentX = (fitWidth * 100) / getScaledWidth(); float percentX = (fitWidth * 100) / getScaledWidth();
float percentY = (fitHeight * 100) / getScaledHeight(); float percentY = (fitHeight * 100) / getScaledHeight();
scalePercent(percentX < percentY ? percentX : percentY); scalePercent(percentX < percentY ? percentX : percentY);
@ -1374,26 +1387,26 @@ public abstract class Image extends Rectangle {
return mySerialId; return mySerialId;
} }
// rotation, note that the superclass also has a rotation value. // rotation, note that the superclass also has a rotation value.
/** This is the rotation of the image in radians. */ /** This is the rotation of the image in radians. */
protected float rotationRadians; protected float rotationRadians;
/** Holds value of property initialRotation. */ /** Holds value of property initialRotation. */
private float initialRotation; private float initialRotation;
/** /**
* Gets the current image rotation in radians. * Gets the current image rotation in radians.
* @return the current image rotation in radians * @return the current image rotation in radians
*/ */
public float getImageRotation() { public float getImageRotation() {
double d = 2.0 * Math.PI; double d = 2.0 * Math.PI;
float rot = (float) ((rotationRadians - initialRotation) % d); float rot = (float) ((rotationRadians - initialRotation) % d);
if (rot < 0) { if (rot < 0) {
rot += d; rot += d;
} }
return rot; return rot;
} }
/** /**
* Sets the rotation of the image in radians. * Sets the rotation of the image in radians.
@ -1423,26 +1436,26 @@ public abstract class Image extends Rectangle {
setRotation(deg / 180 * (float) d); setRotation(deg / 180 * (float) d);
} }
/** /**
* Getter for property initialRotation. * Getter for property initialRotation.
* @return Value of property initialRotation. * @return Value of property initialRotation.
*/ */
public float getInitialRotation() { public float getInitialRotation() {
return this.initialRotation; return this.initialRotation;
} }
/** /**
* Some image formats, like TIFF may present the images rotated that have * Some image formats, like TIFF may present the images rotated that have
* to be compensated. * to be compensated.
* @param initialRotation New value of property initialRotation. * @param initialRotation New value of property initialRotation.
*/ */
public void setInitialRotation(float initialRotation) { public void setInitialRotation(float initialRotation) {
float old_rot = rotationRadians - this.initialRotation; float old_rot = rotationRadians - this.initialRotation;
this.initialRotation = initialRotation; this.initialRotation = initialRotation;
setRotation(old_rot); setRotation(old_rot);
} }
// indentations // indentations
/** the indentation to the left. */ /** the indentation to the left. */
protected float indentationLeft = 0; protected float indentationLeft = 0;
@ -1532,7 +1545,7 @@ public abstract class Image extends Rectangle {
this.spacingAfter = spacing; this.spacingAfter = spacing;
} }
// widthpercentage (for the moment only used in ColumnText) // widthpercentage (for the moment only used in ColumnText)
/** /**
* Holds value of property widthPercentage. * Holds value of property widthPercentage.
@ -1558,7 +1571,7 @@ public abstract class Image extends Rectangle {
this.widthPercentage = widthPercentage; this.widthPercentage = widthPercentage;
} }
// annotation // annotation
/** if the annotation is not null the image will be clickable. */ /** if the annotation is not null the image will be clickable. */
protected Annotation annotation = null; protected Annotation annotation = null;
@ -1582,9 +1595,9 @@ public abstract class Image extends Rectangle {
return annotation; return annotation;
} }
// Optional Content // Optional Content
/** Optional Content layer to which we want this Image to belong. */ /** Optional Content layer to which we want this Image to belong. */
protected PdfOCG layer; protected PdfOCG layer;
/** /**
@ -1861,48 +1874,48 @@ public abstract class Image extends Rectangle {
this.additional = additional; this.additional = additional;
} }
/** /**
* Replaces CalRGB and CalGray colorspaces with DeviceRGB and DeviceGray. * Replaces CalRGB and CalGray colorspaces with DeviceRGB and DeviceGray.
*/ */
public void simplifyColorspace() { public void simplifyColorspace() {
if (additional == null) if (additional == null)
return; return;
PdfArray value = additional.getAsArray(PdfName.COLORSPACE); PdfArray value = additional.getAsArray(PdfName.COLORSPACE);
if (value == null) if (value == null)
return; return;
PdfObject cs = simplifyColorspace(value); PdfObject cs = simplifyColorspace(value);
PdfObject newValue; PdfObject newValue;
if (cs.isName()) if (cs.isName())
newValue = cs; newValue = cs;
else { else {
newValue = value; newValue = value;
PdfName first = value.getAsName(0); PdfName first = value.getAsName(0);
if (PdfName.INDEXED.equals(first)) { if (PdfName.INDEXED.equals(first)) {
if (value.size() >= 2) { if (value.size() >= 2) {
PdfArray second = value.getAsArray(1); PdfArray second = value.getAsArray(1);
if (second != null) { if (second != null) {
value.set(1, simplifyColorspace(second)); value.set(1, simplifyColorspace(second));
} }
} }
} }
} }
additional.put(PdfName.COLORSPACE, newValue); additional.put(PdfName.COLORSPACE, newValue);
} }
/** /**
* Gets a PDF Name from an array or returns the object that was passed. * Gets a PDF Name from an array or returns the object that was passed.
*/ */
private PdfObject simplifyColorspace(PdfArray obj) { private PdfObject simplifyColorspace(PdfArray obj) {
if (obj == null) if (obj == null)
return obj; return obj;
PdfName first = obj.getAsName(0); PdfName first = obj.getAsName(0);
if (PdfName.CALGRAY.equals(first)) if (PdfName.CALGRAY.equals(first))
return PdfName.DEVICEGRAY; return PdfName.DEVICEGRAY;
else if (PdfName.CALRGB.equals(first)) else if (PdfName.CALRGB.equals(first))
return PdfName.DEVICERGB; return PdfName.DEVICERGB;
else else
return obj; return obj;
} }
/** Is this image a mask? */ /** Is this image a mask? */
protected boolean mask = false; protected boolean mask = false;
@ -2023,7 +2036,7 @@ public abstract class Image extends Rectangle {
/** /**
* Returns the compression level used for images written as a compressed stream. * Returns the compression level used for images written as a compressed stream.
* @return the compression level (0 = best speed, 9 = best compression, -1 is default) * @return the compression level (0 = best speed, 9 = best compression, -1 is default)
* @since 2.1.3 * @since 2.1.3
*/ */
public int getCompressionLevel() { public int getCompressionLevel() {
return compressionLevel; return compressionLevel;
@ -2032,7 +2045,7 @@ public abstract class Image extends Rectangle {
/** /**
* Sets the compression level to be used if the image is written as a compressed stream. * Sets the compression level to be used if the image is written as a compressed stream.
* @param compressionLevel a value between 0 (best speed) and 9 (best compression) * @param compressionLevel a value between 0 (best speed) and 9 (best compression)
* @since 2.1.3 * @since 2.1.3
*/ */
public void setCompressionLevel(int compressionLevel) { public void setCompressionLevel(int compressionLevel) {
if (compressionLevel < PdfStream.NO_COMPRESSION || compressionLevel > PdfStream.BEST_COMPRESSION) if (compressionLevel < PdfStream.NO_COMPRESSION || compressionLevel > PdfStream.BEST_COMPRESSION)

323
fine-itext-old/src/com/fr/third/com/lowagie/text/List.java

@ -49,11 +49,11 @@
package com.fr.third.com.lowagie.text; package com.fr.third.com.lowagie.text;
import com.fr.third.com.lowagie.text.factories.RomanAlphabetFactory;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Iterator; import java.util.Iterator;
import com.fr.third.com.lowagie.text.factories.RomanAlphabetFactory;
/** /**
* A <CODE>List</CODE> contains several <CODE>ListItem</CODE>s. * A <CODE>List</CODE> contains several <CODE>ListItem</CODE>s.
* <P> * <P>
@ -103,22 +103,22 @@ public class List implements TextElementArray {
// constants // constants
/** a possible value for the numbered parameter */ /** a possible value for the numbered parameter */
public static final boolean ORDERED = true; public static final boolean ORDERED = true;
/** a possible value for the numbered parameter */ /** a possible value for the numbered parameter */
public static final boolean UNORDERED = false; public static final boolean UNORDERED = false;
/** a possible value for the lettered parameter */ /** a possible value for the lettered parameter */
public static final boolean NUMERICAL = false; public static final boolean NUMERICAL = false;
/** a possible value for the lettered parameter */ /** a possible value for the lettered parameter */
public static final boolean ALPHABETICAL = true; public static final boolean ALPHABETICAL = true;
/** a possible value for the lettered parameter */ /** a possible value for the lettered parameter */
public static final boolean UPPERCASE = false; public static final boolean UPPERCASE = false;
/** a possible value for the lettered parameter */ /** a possible value for the lettered parameter */
public static final boolean LOWERCASE = true; public static final boolean LOWERCASE = true;
// member variables // member variables
/** This is the <CODE>ArrayList</CODE> containing the different <CODE>ListItem</CODE>s. */ /** This is the <CODE>ArrayList</CODE> containing the different <CODE>ListItem</CODE>s. */
protected ArrayList list = new ArrayList(); protected ArrayList list = new ArrayList();
/** Indicates if the list has to be numbered. */ /** Indicates if the list has to be numbered. */
@ -127,6 +127,15 @@ public class List implements TextElementArray {
protected boolean lettered = false; protected boolean lettered = false;
/** Indicates if the listsymbols are lowercase or uppercase. */ /** Indicates if the listsymbols are lowercase or uppercase. */
protected boolean lowercase = false; protected boolean lowercase = false;
public ArrayList getList() {
return list;
}
public void setList(ArrayList list) {
this.list = list;
}
/** Indicates if the indentation has to be set automatically. */ /** Indicates if the indentation has to be set automatically. */
protected boolean autoindent = false; protected boolean autoindent = false;
/** Indicates if the indentation of all the items has to be aligned. */ /** Indicates if the indentation of all the items has to be aligned. */
@ -167,7 +176,7 @@ public class List implements TextElementArray {
* @since iText 2.0.8 * @since iText 2.0.8
*/ */
public List(float symbolIndent) { public List(float symbolIndent) {
this.symbolIndent = symbolIndent; this.symbolIndent = symbolIndent;
} }
/** /**
@ -175,7 +184,7 @@ public class List implements TextElementArray {
* @param numbered a boolean * @param numbered a boolean
*/ */
public List(boolean numbered) { public List(boolean numbered) {
this(numbered, false); this(numbered, false);
} }
/** /**
@ -184,7 +193,7 @@ public class List implements TextElementArray {
* @param lettered has the list to be 'numbered' with letters * @param lettered has the list to be 'numbered' with letters
*/ */
public List(boolean numbered, boolean lettered) { public List(boolean numbered, boolean lettered) {
this.numbered = numbered; this.numbered = numbered;
this.lettered = lettered; this.lettered = lettered;
this.autoindent = true; this.autoindent = true;
this.alignindent = true; this.alignindent = true;
@ -243,7 +252,7 @@ public class List implements TextElementArray {
* @return a type * @return a type
*/ */
public int type() { public int type() {
return Element.LIST; return LIST;
} }
/** /**
@ -287,8 +296,8 @@ public class List implements TextElementArray {
item.setIndentationRight(0); item.setIndentationRight(0);
return list.add(item); return list.add(item);
} }
else if (o instanceof List) { else if (o instanceof com.fr.third.com.lowagie.text.List) {
List nested = (List) o; com.fr.third.com.lowagie.text.List nested = (com.fr.third.com.lowagie.text.List) o;
nested.setIndentationLeft(nested.getIndentationLeft() + symbolIndent); nested.setIndentationLeft(nested.getIndentationLeft() + symbolIndent);
first--; first--;
return list.add(nested); return list.add(nested);
@ -301,59 +310,59 @@ public class List implements TextElementArray {
// extra methods // extra methods
/** Makes sure all the items in the list have the same indentation. */ /** Makes sure all the items in the list have the same indentation. */
public void normalizeIndentation() { public void normalizeIndentation() {
float max = 0; float max = 0;
Element o; Element o;
for (Iterator i = list.iterator(); i.hasNext(); ) { for (Iterator i = list.iterator(); i.hasNext(); ) {
o = (Element)i.next(); o = (Element)i.next();
if (o instanceof ListItem) { if (o instanceof ListItem) {
max = Math.max(max, ((ListItem)o).getIndentationLeft()); max = Math.max(max, ((ListItem)o).getIndentationLeft());
} }
} }
for (Iterator i = list.iterator(); i.hasNext(); ) { for (Iterator i = list.iterator(); i.hasNext(); ) {
o = (Element)i.next(); o = (Element)i.next();
if (o instanceof ListItem) { if (o instanceof ListItem) {
((ListItem)o).setIndentationLeft(max); ((ListItem)o).setIndentationLeft(max);
} }
} }
} }
// setters // setters
/** /**
* @param numbered the numbered to set * @param numbered the numbered to set
*/ */
public void setNumbered(boolean numbered) { public void setNumbered(boolean numbered) {
this.numbered = numbered; this.numbered = numbered;
} }
/** /**
* @param lettered the lettered to set * @param lettered the lettered to set
*/ */
public void setLettered(boolean lettered) { public void setLettered(boolean lettered) {
this.lettered = lettered; this.lettered = lettered;
} }
/** /**
* @param uppercase the uppercase to set * @param uppercase the uppercase to set
*/ */
public void setLowercase(boolean uppercase) { public void setLowercase(boolean uppercase) {
this.lowercase = uppercase; this.lowercase = uppercase;
} }
/** /**
* @param autoindent the autoindent to set * @param autoindent the autoindent to set
*/ */
public void setAutoindent(boolean autoindent) { public void setAutoindent(boolean autoindent) {
this.autoindent = autoindent; this.autoindent = autoindent;
} }
/** /**
* @param alignindent the alignindent to set * @param alignindent the alignindent to set
*/ */
public void setAlignindent(boolean alignindent) { public void setAlignindent(boolean alignindent) {
this.alignindent = alignindent; this.alignindent = alignindent;
} }
/** /**
* Sets the number that has to come first in the list. * Sets the number that has to come first in the list.
@ -402,12 +411,12 @@ public class List implements TextElementArray {
this.indentationRight = indentation; this.indentationRight = indentation;
} }
/** /**
* @param symbolIndent the symbolIndent to set * @param symbolIndent the symbolIndent to set
*/ */
public void setSymbolIndent(float symbolIndent) { public void setSymbolIndent(float symbolIndent) {
this.symbolIndent = symbolIndent; this.symbolIndent = symbolIndent;
} }
// methods to retrieve information // methods to retrieve information
@ -435,7 +444,7 @@ public class List implements TextElementArray {
* @return <CODE>true</CODE> if the list is empty * @return <CODE>true</CODE> if the list is empty
*/ */
public boolean isEmpty() { public boolean isEmpty() {
return list.isEmpty(); return list.isEmpty();
} }
/** /**
@ -480,109 +489,109 @@ public class List implements TextElementArray {
/** /**
* Checks if the indentation of list items is done automatically. * Checks if the indentation of list items is done automatically.
* @return the autoindent * @return the autoindent
*/ */
public boolean isAutoindent() { public boolean isAutoindent() {
return autoindent; return autoindent;
} }
/** /**
* Checks if all the listitems should be aligned. * Checks if all the listitems should be aligned.
* @return the alignindent * @return the alignindent
*/ */
public boolean isAlignindent() { public boolean isAlignindent() {
return alignindent; return alignindent;
} }
/** /**
* Gets the first number . * Gets the first number .
* @return a number * @return a number
*/ */
public int getFirst() { public int getFirst() {
return first; return first;
} }
/** /**
* Gets the Chunk containing the symbol. * Gets the Chunk containing the symbol.
* @return a Chunk with a symbol * @return a Chunk with a symbol
*/ */
public Chunk getSymbol() { public Chunk getSymbol() {
return symbol; return symbol;
} }
/** /**
* Gets the indentation of this paragraph on the left side. * Gets the indentation of this paragraph on the left side.
* @return the indentation * @return the indentation
*/ */
public float getIndentationLeft() { public float getIndentationLeft() {
return indentationLeft; return indentationLeft;
} }
/** /**
* Gets the indentation of this paragraph on the right side. * Gets the indentation of this paragraph on the right side.
* @return the indentation * @return the indentation
*/ */
public float getIndentationRight() { public float getIndentationRight() {
return indentationRight; return indentationRight;
} }
/** /**
* Gets the symbol indentation. * Gets the symbol indentation.
* @return the symbol indentation * @return the symbol indentation
*/ */
public float getSymbolIndent() { public float getSymbolIndent() {
return symbolIndent; return symbolIndent;
} }
/** /**
* @see com.fr.third.com.lowagie.text.Element#isContent() * @see Element#isContent()
* @since iText 2.0.8 * @since iText 2.0.8
*/ */
public boolean isContent() { public boolean isContent() {
return true; return true;
} }
/** /**
* @see com.fr.third.com.lowagie.text.Element#isNestable() * @see Element#isNestable()
* @since iText 2.0.8 * @since iText 2.0.8
*/ */
public boolean isNestable() { public boolean isNestable() {
return true; return true;
} }
/** /**
* Returns the String that is after a number or letter in the list symbol. * Returns the String that is after a number or letter in the list symbol.
* @return the String that is after a number or letter in the list symbol * @return the String that is after a number or letter in the list symbol
* @since iText 2.1.1 * @since iText 2.1.1
*/ */
public String getPostSymbol() { public String getPostSymbol() {
return postSymbol; return postSymbol;
} }
/** /**
* Sets the String that has to be added after a number or letter in the list symbol. * Sets the String that has to be added after a number or letter in the list symbol.
* @since iText 2.1.1 * @since iText 2.1.1
* @param postSymbol the String that has to be added after a number or letter in the list symbol. * @param postSymbol the String that has to be added after a number or letter in the list symbol.
*/ */
public void setPostSymbol(String postSymbol) { public void setPostSymbol(String postSymbol) {
this.postSymbol = postSymbol; this.postSymbol = postSymbol;
} }
/** /**
* Returns the String that is before a number or letter in the list symbol. * Returns the String that is before a number or letter in the list symbol.
* @return the String that is before a number or letter in the list symbol * @return the String that is before a number or letter in the list symbol
* @since iText 2.1.1 * @since iText 2.1.1
*/ */
public String getPreSymbol() { public String getPreSymbol() {
return preSymbol; return preSymbol;
} }
/** /**
* Sets the String that has to be added before a number or letter in the list symbol. * Sets the String that has to be added before a number or letter in the list symbol.
* @since iText 2.1.1 * @since iText 2.1.1
* @param preSymbol the String that has to be added before a number or letter in the list symbol. * @param preSymbol the String that has to be added before a number or letter in the list symbol.
*/ */
public void setPreSymbol(String preSymbol) { public void setPreSymbol(String preSymbol) {
this.preSymbol = preSymbol; this.preSymbol = preSymbol;
} }
} }

94
fine-itext-old/src/com/fr/third/com/lowagie/text/Paragraph.java

@ -49,6 +49,8 @@
package com.fr.third.com.lowagie.text; package com.fr.third.com.lowagie.text;
import java.util.HashMap;
/** /**
* A <CODE>Paragraph</CODE> is a series of <CODE>Chunk</CODE>s and/or <CODE>Phrases</CODE>. * A <CODE>Paragraph</CODE> is a series of <CODE>Chunk</CODE>s and/or <CODE>Phrases</CODE>.
* <P> * <P>
@ -72,13 +74,13 @@ package com.fr.third.com.lowagie.text;
public class Paragraph extends Phrase { public class Paragraph extends Phrase {
// constants // constants
private static final long serialVersionUID = 7852314969733375514L; private static final long serialVersionUID = 7852314969733375514L;
// membervariables // membervariables
/** The alignment of the text. */ /** The alignment of the text. */
protected int alignment = Element.ALIGN_UNDEFINED; protected int alignment = ALIGN_UNDEFINED;
/** The text leading that is multiplied by the biggest font size in the line. */ /** The text leading that is multiplied by the biggest font size in the line. */
protected float multipliedLeading = 0; protected float multipliedLeading = 0;
@ -106,6 +108,22 @@ public class Paragraph extends Phrase {
protected String background; protected String background;
protected HashMap attributes = new HashMap();
public HashMap getAttributes() {
return attributes;
}
public void setAttributes(HashMap attributes) {
this.attributes = attributes;
}
public void setAttribute(String name, Object obj) {
if (attributes == null)
attributes = new HashMap();
attributes.put(name, obj);
}
// constructors // constructors
/** /**
@ -195,15 +213,15 @@ public class Paragraph extends Phrase {
public Paragraph(Phrase phrase) { public Paragraph(Phrase phrase) {
super(phrase); super(phrase);
if (phrase instanceof Paragraph) { if (phrase instanceof Paragraph) {
Paragraph p = (Paragraph)phrase; Paragraph p = (Paragraph)phrase;
setAlignment(p.alignment); setAlignment(p.alignment);
setLeading(phrase.getLeading(), p.multipliedLeading); setLeading(phrase.getLeading(), p.multipliedLeading);
setIndentationLeft(p.getIndentationLeft()); setIndentationLeft(p.getIndentationLeft());
setIndentationRight(p.getIndentationRight()); setIndentationRight(p.getIndentationRight());
setFirstLineIndent(p.getFirstLineIndent()); setFirstLineIndent(p.getFirstLineIndent());
setSpacingAfter(p.spacingAfter()); setSpacingAfter(p.spacingAfter());
setSpacingBefore(p.spacingBefore()); setSpacingBefore(p.spacingBefore());
setExtraParagraphSpace(p.getExtraParagraphSpace()); setExtraParagraphSpace(p.getExtraParagraphSpace());
} }
} }
@ -215,7 +233,7 @@ public class Paragraph extends Phrase {
* @return a type * @return a type
*/ */
public int type() { public int type() {
return Element.PARAGRAPH; return PARAGRAPH;
} }
// methods // methods
@ -241,11 +259,11 @@ public class Paragraph extends Phrase {
super.add(o); super.add(o);
java.util.List chunks = getChunks(); java.util.List chunks = getChunks();
if (!chunks.isEmpty()) { if (!chunks.isEmpty()) {
Chunk tmp = ((Chunk) chunks.get(chunks.size() - 1)); Chunk tmp = ((Chunk) chunks.get(chunks.size() - 1));
super.add(new Chunk("\n", tmp.getFont())); super.add(new Chunk("\n", tmp.getFont()));
} }
else { else {
super.add(Chunk.NEWLINE); super.add(Chunk.NEWLINE);
} }
return true; return true;
} }
@ -270,26 +288,26 @@ public class Paragraph extends Phrase {
*/ */
public void setAlignment(String alignment) { public void setAlignment(String alignment) {
if (ElementTags.ALIGN_CENTER.equalsIgnoreCase(alignment)) { if (ElementTags.ALIGN_CENTER.equalsIgnoreCase(alignment)) {
this.alignment = Element.ALIGN_CENTER; this.alignment = ALIGN_CENTER;
return; return;
} }
if (ElementTags.ALIGN_RIGHT.equalsIgnoreCase(alignment)) { if (ElementTags.ALIGN_RIGHT.equalsIgnoreCase(alignment)) {
this.alignment = Element.ALIGN_RIGHT; this.alignment = ALIGN_RIGHT;
return; return;
} }
if (ElementTags.ALIGN_JUSTIFIED.equalsIgnoreCase(alignment)) { if (ElementTags.ALIGN_JUSTIFIED.equalsIgnoreCase(alignment)) {
this.alignment = Element.ALIGN_JUSTIFIED; this.alignment = ALIGN_JUSTIFIED;
return; return;
} }
if (ElementTags.ALIGN_JUSTIFIED_ALL.equalsIgnoreCase(alignment)) { if (ElementTags.ALIGN_JUSTIFIED_ALL.equalsIgnoreCase(alignment)) {
this.alignment = Element.ALIGN_JUSTIFIED_ALL; this.alignment = ALIGN_JUSTIFIED_ALL;
return; return;
} }
this.alignment = Element.ALIGN_LEFT; this.alignment = ALIGN_LEFT;
} }
/** /**
* @see com.fr.third.com.lowagie.text.Phrase#setLeading(float) * @see Phrase#setLeading(float)
*/ */
public void setLeading(float fixedLeading) { public void setLeading(float fixedLeading) {
this.leading = fixedLeading; this.leading = fixedLeading;
@ -383,7 +401,7 @@ public class Paragraph extends Phrase {
// methods to retrieve information // methods to retrieve information
/** /**
* Gets the alignment of this paragraph. * Gets the alignment of this paragraph.
* *
* @return alignment * @return alignment
@ -409,15 +427,15 @@ public class Paragraph extends Phrase {
* @return the total leading (fixed and multiplied) * @return the total leading (fixed and multiplied)
*/ */
public float getTotalLeading() { public float getTotalLeading() {
float m = font == null ? float m = font == null ?
Font.DEFAULTSIZE * multipliedLeading : font.getCalculatedLeading(multipliedLeading); Font.DEFAULTSIZE * multipliedLeading : font.getCalculatedLeading(multipliedLeading);
if (m > 0 && !hasLeading()) { if (m > 0 && !hasLeading()) {
return m; return m;
} }
return getLeading() + m; return getLeading() + m;
} }
/** /**
* Gets the indentation of this paragraph on the left side. * Gets the indentation of this paragraph on the left side.
* *
* @return the indentation * @return the indentation
@ -426,11 +444,11 @@ public class Paragraph extends Phrase {
return indentationLeft; return indentationLeft;
} }
/** /**
* Gets the indentation of this paragraph on the right side. * Gets the indentation of this paragraph on the right side.
* *
* @return the indentation * @return the indentation
*/ */
public float getIndentationRight() { public float getIndentationRight() {
return indentationRight; return indentationRight;
} }
@ -449,7 +467,7 @@ public class Paragraph extends Phrase {
* @since 2.1.5 * @since 2.1.5
*/ */
public float getSpacingBefore() { public float getSpacingBefore() {
return spacingBefore; return spacingBefore;
} }
/** /**
@ -458,7 +476,7 @@ public class Paragraph extends Phrase {
* @since 2.1.5 * @since 2.1.5
*/ */
public float getSpacingAfter() { public float getSpacingAfter() {
return spacingAfter; return spacingAfter;
} }
/** /**

2
fine-itext-old/src/com/fr/third/com/lowagie/text/factories/ElementFactory.java

@ -135,7 +135,7 @@ public class ElementFactory {
} }
value = attributes.getProperty(ElementTags.BACKGROUNDCOLOR); value = attributes.getProperty(ElementTags.BACKGROUNDCOLOR);
if (value != null) { if (value != null) {
chunk.setBackground(Markup.decodeColor(value)); chunk.setBackground(value);
} }
return chunk; return chunk;
} }

200
fine-itext-old/src/com/fr/third/com/lowagie/text/html/CSS.java

@ -0,0 +1,200 @@
package com.fr.third.com.lowagie.text.html;
/**
* @author kerry
* @date 2018/5/11
*/
public class CSS {
public final class Value {
private Value(){};
public static final String THIN = "thin";
public static final String MEDIUM = "medium";
public static final String THICK = "thick";
public static final String NONE = "none";
public static final String HIDDEN = "hidden";
public static final String DOTTED = "dotted";
public static final String DASHED = "dashed";
public static final String SOLID = "solid";
public static final String DOUBLE = "double";
public static final String GROOVE = "groove";
public static final String RIDGE = "ridge";
public static final String INSET = "inset";
public static final String OUTSET = "outset";
public static final String LEFT = "left";
public static final String CENTER = "center";
public static final String JUSTIFY = "justify";
public static final String BOTTOM = "bottom";
public static final String TOP = "top";
public static final String RIGHT = "right";
public static final String REPEAT = "repeat";
public static final String NO_REPEAT = "no-repeat";
public static final String REPEAT_X = "repeat-x";
public static final String REPEAT_Y = "repeat-y";
public static final String FIXED = "fixed";
public static final String SCROLL = "scroll";
public static final String DISC = "disc";
public static final String SQUARE = "square";
public static final String CIRCLE = "circle";
public static final String DECIMAL = "decimal";
public static final String LOWER_ROMAN = "lower-roman";
public static final String UPPER_ROMAN = "upper-roman";
public static final String LOWER_GREEK = "lower-greek";
public static final String UPPER_GREEK = "upper-greek";
public static final String LOWER_ALPHA = "lower-alpha";
public static final String UPPER_ALPHA = "upper-alpha";
public static final String LOWER_LATIN = "lower-latin";
public static final String UPPER_LATIN = "upper-latin";
public static final String INSIDE = "inside";
public static final String OUTSIDE = "outside";
public static final String INHERIT = "inherit";
public static final String UNDERLINE = "underline";
public static final String BOLD = "bold";
public static final String ITALIC = "italic";
public static final String OBLIQUE = "oblique";
public static final String SUPER = "super";
public static final String SUB = "sub";
public static final String TEXT_TOP = "text-top";
public static final String TEXT_BOTTOM = "text-bottom";
public static final String LINE_THROUGH = "line-through";
public static final String RELATIVE = "relative";
public static final String HIDE = "hide";
public static final String XX_SMALL = "xx-small";
public static final String X_SMALL = "x-small";
public static final String SMALL = "small";
public static final String LARGE = "large";
public static final String X_LARGE = "x-large";
public static final String XX_LARGE = "xx-large";
public static final String SMALLER = "smaller";
public static final String LARGER = "larger";
public static final String PX = "px";
public static final String IN = "in";
public static final String CM = "cm";
public static final String MM = "mm";
public static final String PT = "pt";
public static final String PC = "pc";
public static final String PERCENTAGE = "%";
public static final String EM = "em";
public static final String EX = "ex";
public static final String ALWAYS = "always";
public static final String AVOID = "avoid";
public static final String ABSOLUTE = "absolute";
public static final String AUTO = "auto";
public static final String INLINE = "inline";
public static final String BLOCK = "block";
public static final String SEPARATE = "separate";
public static final String COLLAPSE = "collapse";
public static final String RTL = "rtl";
public static final String LTR = "ltr";
public static final String INLINE_BLOCK = "inline-block";
public static final String INLINE_TABLE = "inline-table";
public static final String LIST_ITEM = "list-item";
public static final String RUN_IN = "run-in";
public static final String TABLE = "table";
public static final String TABLE_CAPTION = "table-caption";
public static final String TABLE_CELL = "table-cell";
public static final String TABLE_COLUMN_GROUP = "table-column-group";
public static final String TABLE_COLUMN = "table-column";
public static final String TABLE_FOOTER_GROUP = "table-footer-group";
public static final String TABLE_HEADER_GROUP = "table-header-group";
public static final String TABLE_ROW = "table-row";
public static final String TABLE_ROW_GROUP = "table-row-group";
}
public final class Property {
private Property() {};
public static final String BACKGROUND = "background";
public static final String BACKGROUND_IMAGE = "background-image";
public static final String BACKGROUND_REPEAT = "background-repeat";
public static final String BACKGROUND_ATTACHMENT = "background-attachment";
public static final String BACKGROUND_POSITION = "background-position";
public static final String BACKGROUND_COLOR = "background-color";
public static final String BACKGROUND_SIZE = "background-size";
public static final String LIST_STYLE = "list-style";
public static final String LIST_STYLE_TYPE = "list-style-type";
public static final String LIST_STYLE_POSITION = "list-style-position";
public static final String LIST_STYLE_IMAGE = "list-style-image";
public static final String MARGIN = "margin";
public static final String TOP = "top";
public static final String MARGIN_LEFT = "margin-left";
public static final String MARGIN_RIGHT = "margin-right";
public static final String MARGIN_TOP = "margin-top";
public static final String MARGIN_BOTTOM = "margin-bottom";
public static final String BORDER = "border";
public static final String BORDER_LEFT = "border-left";
public static final String BORDER_TOP = "border-top";
public static final String BORDER_RIGHT = "border-right";
public static final String BORDER_BOTTOM = "border-bottom";
public static final String BORDER_WIDTH = "border-width";
public static final String BORDER_STYLE = "border-style";
public static final String BORDER_COLOR = "border-color";
public static final String BORDER_COLLAPSE = "border-collapse";
public static final String BORDER_SPACING = "border-spacing";
public static final String BORDER_TOP_WIDTH = "border-top-width";
public static final String BORDER_BOTTOM_WIDTH = "border-bottom-width";
public static final String BORDER_LEFT_WIDTH = "border-left-width";
public static final String BORDER_RIGHT_WIDTH = "border-right-width";
public static final String BORDER_TOP_COLOR = "border-top-color";
public static final String BORDER_BOTTOM_COLOR = "border-bottom-color";
public static final String BORDER_LEFT_COLOR = "border-left-color";
public static final String BORDER_RIGHT_COLOR = "border-right-color";
public static final String BORDER_TOP_STYLE = "border-top-style";
public static final String BORDER_BOTTOM_STYLE = "border-bottom-style";
public static final String BORDER_LEFT_STYLE = "border-left-style";
public static final String BORDER_RIGHT_STYLE = "border-right-style";
public static final String PADDING = "padding";
public static final String PADDING_TOP = "padding-top";
public static final String PADDING_BOTTOM = "padding-bottom";
public static final String PADDING_LEFT = "padding-left";
public static final String PADDING_RIGHT = "padding-right";
public static final String FONT = "font";
public static final String FONT_WEIGHT = "font-weight";
public static final String FONT_SIZE = "font-size";
public static final String FONT_STYLE = "font-style";
public static final String FONT_FAMILY = "font-family";
public static final String TEXT_DECORATION = "text-decoration";
public static final String COLOR = "color";
public static final String TAB_INTERVAL = "tab-interval";
public static final String XFA_TAB_COUNT = "xfa-tab-count";
public static final String XFA_FONT_HORIZONTAL_SCALE = "xfa-font-horizontal-scale";
public static final String XFA_FONT_VERTICAL_SCALE = "xfa-font-vertical-scale";
public static final String BEFORE = "before";
public static final String AFTER = "after";
public static final String HEIGHT = "height";
public static final String WIDTH = "width";
public static final String LETTER_SPACING = "letter-spacing";
public static final String VERTICAL_ALIGN = "vertical-align";
public static final String LINE_HEIGHT = "line-height";
public static final String TEXT_ALIGN = "text-align";
public static final String TEXT_VALIGN = "text-valign";
public static final String TEXT_INDENT = "text-indent";
public static final String POSITION = "position";
public static final String EMPTY_CELLS = "empty-cells";
public static final String CELLPADDING = "cellpadding";
//deprecated
public static final String CELLPADDING_LEFT = "cellpadding-left";
public static final String CELLPADDING_TOP = "cellpadding-top";
public static final String CELLPADDING_RIGHT = "cellpadding-right";
public static final String CELLPADDING_BOTTOM = "cellpadding-bottom";
public static final String CAPTION_SIDE = "caption-side";
public static final String TAB_STOPS = "tab-stops";
public static final String XFA_TAB_STOPS = "xfa-tab-stops";
public static final String PAGE_BREAK_BEFORE = "page-break-before";
public static final String PAGE_BREAK_INSIDE = "page-break-inside";
public static final String PAGE_BREAK_AFTER = "page-break-after";
public static final String REPEAT_HEADER = "repeat-header";
public static final String REPEAT_FOOTER = "repeat-footer";
public static final String LEFT = "left";
public static final String DISPLAY = "display";
public static final String MIN_WIDTH = "min-width";
public static final String MAX_WIDTH = "max-width";
public static final String MIN_HEIGHT = "min-height";
public static final String MAX_HEIGHT = "max-height";
public static final String RIGHT = "right";
public static final String BOTTOM = "bottom";
public static final String FLOAT = "float";
public static final String DIRECTION = "direction";
}
}

108
fine-itext-old/src/com/fr/third/com/lowagie/text/html/CSSUtils.java

@ -0,0 +1,108 @@
package com.fr.third.com.lowagie.text.html;
import com.fr.third.com.lowagie.text.html.CSS;
import com.fr.third.com.lowagie.text.html.WebColors;
import java.util.Arrays;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;
/**
* @author kerry
* @date 2018/4/9
*/
public class CSSUtils {
private static final Set<String> backgroundPositions = new HashSet<String>(
Arrays.asList(new String[] { CSS.Value.LEFT, CSS.Value.CENTER, CSS.Value.BOTTOM, CSS.Value.TOP, CSS.Value.RIGHT }));
public static Map<String, String> processBackground(final String background) {
Map<String, String> rules = new HashMap<String, String>();
String[] styles = splitComplexCssStyle(background);
for(String style : styles) {
if (style.contains("url(")) {
rules.put(CSS.Property.BACKGROUND_IMAGE, style);
} else if (style.equalsIgnoreCase(CSS.Value.REPEAT)
|| style.equalsIgnoreCase(CSS.Value.NO_REPEAT)
|| style.equalsIgnoreCase(CSS.Value.REPEAT_X)
|| style.equalsIgnoreCase(CSS.Value.REPEAT_Y)) {
rules.put(CSS.Property.BACKGROUND_REPEAT, style);
} else if (style.equalsIgnoreCase(CSS.Value.FIXED) || style.equalsIgnoreCase(CSS.Value.SCROLL)) {
rules.put(CSS.Property.BACKGROUND_ATTACHMENT, style);
} else if (backgroundPositions.contains(style)) {
if(rules.get(CSS.Property.BACKGROUND_POSITION) == null) {
rules.put(CSS.Property.BACKGROUND_POSITION, style);
} else {
style = style.concat(" "+rules.get(CSS.Property.BACKGROUND_POSITION));
rules.put(CSS.Property.BACKGROUND_POSITION, style);
}
} else if (isNumericValue(style) || isMetricValue(style) || isRelativeValue(style)) {
if(rules.get(CSS.Property.BACKGROUND_POSITION) == null) {
rules.put(CSS.Property.BACKGROUND_POSITION, style);
} else {
style = style.concat(" "+rules.get(CSS.Property.BACKGROUND_POSITION));
rules.put(CSS.Property.BACKGROUND_POSITION, style);
}
} else if(style.contains("rgb(") || style.contains("rgba(") || style.contains("#") || WebColors.NAMES.containsKey(style.toLowerCase())) {
rules.put(CSS.Property.BACKGROUND_COLOR, style);
}
}
return rules;
}
public static String[] splitComplexCssStyle(String s) {
s = s.replaceAll("\\s*,\\s*", ",") ;
return s.split("\\s");
}
public static boolean isMetricValue(final String value) {
return value.contains(CSS.Value.PX) || value.contains(CSS.Value.IN) || value.contains(CSS.Value.CM)
|| value.contains(CSS.Value.MM) || value.contains(CSS.Value.PC) || value.contains(CSS.Value.PT);
}
public static boolean isRelativeValue(final String value) {
return value.contains(CSS.Value.PERCENTAGE) || value.contains(CSS.Value.EM) || value.contains(CSS.Value.EX);
}
public static boolean isNumericValue(final String value) {
return value.matches("^-?\\d\\d*\\.\\d*$") || value.matches("^-?\\d\\d*$") || value.matches("^-?\\.\\d\\d*$");
}
public static String extractUrl(final String url) {
String str = null;
if (url.startsWith("url")) {
String urlString = url.substring(3).trim().replace("(", "").replace(")", "").trim();
if (urlString.startsWith("'") && urlString.endsWith("'")) {
str = urlString.substring(urlString.indexOf("'")+1, urlString.lastIndexOf("'"));
} else if ( urlString.startsWith("\"") && urlString.endsWith("\"") ) {
str = urlString.substring(urlString.indexOf('"')+1, urlString.lastIndexOf('"'));
} else {
str = urlString;
}
} else {
str = url;
}
return str;
}
public static Float parseFloat(String str){
float result = 0.0f;
try {
if(str.endsWith("px") || str.endsWith("pt")){
result = Float.parseFloat(str.substring(0, str.length() - 2));
}else{
result = Float.parseFloat(str);
}
}catch (NumberFormatException e){
}
return result;
}
}

55
fine-itext-old/src/com/fr/third/com/lowagie/text/html/IndentAttribute.java

@ -0,0 +1,55 @@
package com.fr.third.com.lowagie.text.html;
/**
* @author kerry
* @date 2018/5/9
*/
public class IndentAttribute {
private float top = 0.0f;
private float bottom = 0.0f;
private float left = 0.0f;
private float right = 0.0f;
public float getTop() {
return top;
}
public void setTop(float top) {
this.top = top;
}
public float getBottom() {
return bottom;
}
public void setBottom(float bottom) {
this.bottom = bottom;
}
public float getLeft() {
return left;
}
public void setLeft(float left) {
this.left = left;
}
public float getRight() {
return right;
}
public void setRight(float right) {
this.right = right;
}
public IndentAttribute(float top, float left, float bottom, float right){
this.top = top;
this.left = left;
this.bottom = bottom;
this.right = right;
}
public IndentAttribute(){
}
}

125
fine-itext-old/src/com/fr/third/com/lowagie/text/html/Markup.java

@ -54,7 +54,6 @@ package com.fr.third.com.lowagie.text.html;
import java.awt.Color; import java.awt.Color;
import java.util.Properties; import java.util.Properties;
import java.util.StringTokenizer;
/** /**
* A class that contains all the possible tagnames and their attributes. * A class that contains all the possible tagnames and their attributes.
@ -273,8 +272,8 @@ public class Markup {
public static final String CSS_VALUE_UNDERLINE = "underline"; public static final String CSS_VALUE_UNDERLINE = "underline";
/** a default value for font-size /** a default value for font-size
* @since 2.1.3 * @since 2.1.3
*/ */
public static final float DEFAULT_FONT_SIZE = 12f; public static final float DEFAULT_FONT_SIZE = 12f;
/** /**
@ -295,23 +294,23 @@ public class Markup {
boolean ok = true; boolean ok = true;
while (ok && pos < length) { while (ok && pos < length) {
switch (string.charAt(pos)) { switch (string.charAt(pos)) {
case '+': case '+':
case '-': case '-':
case '0': case '0':
case '1': case '1':
case '2': case '2':
case '3': case '3':
case '4': case '4':
case '5': case '5':
case '6': case '6':
case '7': case '7':
case '8': case '8':
case '9': case '9':
case '.': case '.':
pos++; pos++;
break; break;
default: default:
ok = false; ok = false;
} }
} }
if (pos == 0) if (pos == 0)
@ -353,23 +352,23 @@ public class Markup {
boolean ok = true; boolean ok = true;
while (ok && pos < length) { while (ok && pos < length) {
switch (string.charAt(pos)) { switch (string.charAt(pos)) {
case '+': case '+':
case '-': case '-':
case '0': case '0':
case '1': case '1':
case '2': case '2':
case '3': case '3':
case '4': case '4':
case '5': case '5':
case '6': case '6':
case '7': case '7':
case '8': case '8':
case '9': case '9':
case '.': case '.':
pos++; pos++;
break; break;
default: default:
ok = false; ok = false;
} }
} }
if (pos == 0) if (pos == 0)
@ -441,29 +440,45 @@ public class Markup {
Properties result = new Properties(); Properties result = new Properties();
if (string == null) if (string == null)
return result; return result;
StringTokenizer keyValuePairs = new StringTokenizer(string, ";");
StringTokenizer keyValuePair;
String key; String key;
String value; String value;
while (keyValuePairs.hasMoreTokens()) { //换种方式解析,style中background里面也有可能会有;符号
keyValuePair = new StringTokenizer(keyValuePairs.nextToken(), ":"); String[] styles = string.split(";");
if (keyValuePair.hasMoreTokens()) for (String s : styles) {
key = keyValuePair.nextToken().trim(); String[] part = s.split(":",2);
else if (part.length == 2) {
continue; key = stripDoubleSpacesAndTrim(part[0]).toLowerCase();
if (keyValuePair.hasMoreTokens()) value = stripDoubleSpacesAndTrim(part[1]);
value = keyValuePair.nextToken().trim(); if (value.startsWith("\"") || value.startsWith("\'") )
else value = value.substring(1);
continue; if (value.endsWith("\"") || value.endsWith("\'"))
if (value.startsWith("\"")) value = value.substring(0, value.length() - 1);
value = value.substring(1); result.setProperty(key.toLowerCase(), value);
if (value.endsWith("\"")) }
value = value.substring(0, value.length() - 1);
result.setProperty(key.toLowerCase(), value);
} }
return result; return result;
} }
public static String stripDoubleSpacesAndTrim(final String str) {
char[] charArray = str.toCharArray();
if (str.contains(" ")) {
StringBuilder builder = new StringBuilder();
for (int i = 0; i < charArray.length; i++) {
char c = charArray[i];
if (c != ' ') {
builder.append(c);
} else {
if (i + 1 < charArray.length && charArray[i + 1] != ' ') {
builder.append(' ');
}
}
}
return builder.toString().trim();
} else {
return String.valueOf(charArray).trim();
}
}
/** /**
* Removes the comments sections of a String. * Removes the comments sections of a String.
* *
@ -476,7 +491,7 @@ public class Markup {
* @return the String stripped of its comment section * @return the String stripped of its comment section
*/ */
public static String removeComment(String string, String startComment, public static String removeComment(String string, String startComment,
String endComment) { String endComment) {
StringBuffer result = new StringBuffer(); StringBuffer result = new StringBuffer();
int pos = 0; int pos = 0;
int end = endComment.length(); int end = endComment.length();

84
fine-itext-old/src/com/fr/third/com/lowagie/text/html/ParseIndentAttrUtils.java

@ -0,0 +1,84 @@
package com.fr.third.com.lowagie.text.html;
import com.fr.third.com.lowagie.text.html.CSS;
import com.fr.third.com.lowagie.text.html.IndentAttribute;
import com.fr.third.com.lowagie.text.html.Markup;
import java.util.Iterator;
import java.util.Map;
/**
* @author kerry
* @date 2018/5/14
*/
public class ParseIndentAttrUtils {
public static IndentAttribute parseSpace(String indent){
String[] a = indent.split(" ");
if(a.length == 0){
return new IndentAttribute();
}
float indentTop = Markup.parseLength(a[0]);
if(a.length == 1){
return new IndentAttribute(indentTop, indentTop, indentTop, indentTop);
}
float indentLeft = Markup.parseLength(a[1]);
if(a.length == 2){
return new IndentAttribute(indentTop, indentLeft, indentTop, indentLeft);
}
float indentBottom = Markup.parseLength(a[2]);
if(a.length == 3){
return new IndentAttribute(indentTop, indentLeft, indentBottom, indentLeft);
}
float indentRight = Markup.parseLength(a[3]);
return new IndentAttribute(indentTop, indentLeft, indentBottom, indentRight);
}
public static IndentAttribute parsePaddingAttribute(Map map){
if (map == null){
return new IndentAttribute();
}
IndentAttribute indentAttribute = new IndentAttribute();
Iterator iter = map.entrySet().iterator();
while (iter.hasNext()) {
Map.Entry entry = (Map.Entry) iter.next();
String key = (String) entry.getKey();
if (CSS.Property.PADDING_LEFT.equals(key)) {
indentAttribute.setLeft(Markup.parseLength((String) entry.getValue()));
} else if (CSS.Property.PADDING_RIGHT.equals(key)) {
indentAttribute.setRight(Markup.parseLength((String) entry.getValue()));
} else if (CSS.Property.PADDING_TOP.equals(key)) {
indentAttribute.setTop(Markup.parseLength((String) entry.getValue()));
} else if (CSS.Property.PADDING_BOTTOM.equals(key)) {
indentAttribute.setBottom(Markup.parseLength((String) entry.getValue()));
}
}
return indentAttribute;
}
public static IndentAttribute parseMarginAttribute(Map map){
IndentAttribute indentAttribute = new IndentAttribute();
Iterator iter = map.entrySet().iterator();
while (iter.hasNext()) {
Map.Entry entry = (Map.Entry) iter.next();
String key = (String) entry.getKey();
float val = Markup.parseLength((String) entry.getValue());
if (CSS.Property.MARGIN_LEFT.equals(key)) {
indentAttribute.setLeft(val);
} else if (CSS.Property.MARGIN_RIGHT.equals(key)) {
indentAttribute.setRight(val);
} else if (CSS.Property.MARGIN_TOP.equals(key)) {
indentAttribute.setTop(val);
} else if (CSS.Property.MARGIN_BOTTOM.equals(key)) {
indentAttribute.setBottom(val);
}
}
return indentAttribute;
}
public static void createIndent(StringBuffer stringBuffer, String attr, IndentAttribute indentAttribute){
stringBuffer.append(attr).append("-").append("left").append(":").append(indentAttribute.getLeft()).append("px;")
.append(attr).append("-").append("right").append(":").append(indentAttribute.getRight()).append("px;")
.append(attr).append("-").append("top").append(":").append(indentAttribute.getTop()).append("px;")
.append(attr).append("-").append("bottom").append(":").append(indentAttribute.getBottom()).append("px;");
}
}

4
fine-itext-old/src/com/fr/third/com/lowagie/text/html/WebColors.java

@ -221,7 +221,7 @@ public class WebColors extends HashMap {
*/ */
public static Color getRGBColor(String name) public static Color getRGBColor(String name)
throws IllegalArgumentException { throws IllegalArgumentException {
int[] c = { 0, 0, 0, 0 }; int[] c = { 0, 0, 0, 255 };
if (name.startsWith("#")) { if (name.startsWith("#")) {
if (name.length() == 4) { if (name.length() == 4) {
c[0] = Integer.parseInt(name.substring(1, 2), 16) * 16; c[0] = Integer.parseInt(name.substring(1, 2), 16) * 16;
@ -258,6 +258,6 @@ public class WebColors extends HashMap {
throw new IllegalArgumentException("Color '" + name throw new IllegalArgumentException("Color '" + name
+ "' not found."); + "' not found.");
c = (int[]) NAMES.get(name); c = (int[]) NAMES.get(name);
return new Color(c[0], c[1], c[2], c[3]); return new Color(c[0], c[1], c[2], 255);
} }
} }

67
fine-itext-old/src/com/fr/third/com/lowagie/text/html/simpleparser/ChainedProperties.java

@ -75,6 +75,13 @@ public class ChainedProperties {
return null; return null;
} }
public String getLastChainProperty(String key){
Object obj[] = (Object[]) chain.get(chain.size()-1);
HashMap prop = (HashMap) obj[1];
return (String) prop.get(key);
}
public boolean hasProperty(String key) { public boolean hasProperty(String key) {
for (int k = chain.size() - 1; k >= 0; --k) { for (int k = chain.size() - 1; k >= 0; --k) {
Object obj[] = (Object[]) chain.get(k); Object obj[] = (Object[]) chain.get(k);
@ -85,6 +92,66 @@ public class ChainedProperties {
return false; return false;
} }
public String getPropertyFromChain (String tag, String key) {
//块级元素不继承行内元素属性
if(HtmlConstants.BLOCK_ELEMENTS.contains(tag)){
for (int k = chain.size() - 1; k >= 0; --k) {
Object obj[] = (Object[]) chain.get(k);
if(HtmlConstants.INLINE_ELEMENTS.contains(obj[0])){
continue;
}
HashMap prop = (HashMap) obj[1];
String ret = (String) prop.get(key);
if (ret != null)
return ret;
}
}else{
for (int k = chain.size() - 1; k >= 0; --k) {
Object obj[] = (Object[]) chain.get(k);
if(HtmlConstants.BLOCK_ELEMENTS.contains(obj[0])){
return null;
}
HashMap prop = (HashMap) obj[1];
String ret = (String) prop.get(key);
if (ret != null)
return ret;
}
}
return null;
}
public boolean hasPropertyInChain(String tag, String key) {
if (HtmlConstants.BLOCK_ELEMENTS.contains(tag)) {
for (int k = chain.size() - 1; k >= 0; --k) {
Object obj[] = (Object[]) chain.get(k);
if( HtmlConstants.INLINE_ELEMENTS.contains(obj[0])){
continue;
}
HashMap prop = (HashMap) obj[1];
if (prop.containsKey(key))
return true;
}
} else {
for (int k = chain.size() - 1; k >= 0; --k) {
Object obj[] = (Object[]) chain.get(k);
if( HtmlConstants.BLOCK_ELEMENTS.contains(obj[0])){
return false;
}
HashMap prop = (HashMap) obj[1];
if (prop.containsKey(key))
return true;
}
}
return false;
}
public void addToChain(String key, HashMap prop) { public void addToChain(String key, HashMap prop) {
// adjust the font size // adjust the font size
String value = (String) prop.get(ElementTags.SIZE); String value = (String) prop.get(ElementTags.SIZE);

82
fine-itext-old/src/com/fr/third/com/lowagie/text/html/simpleparser/FactoryProperties.java

@ -50,12 +50,6 @@
package com.fr.third.com.lowagie.text.html.simpleparser; package com.fr.third.com.lowagie.text.html.simpleparser;
import java.awt.Color;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Properties;
import java.util.StringTokenizer;
import com.fr.third.com.lowagie.text.Chunk; import com.fr.third.com.lowagie.text.Chunk;
import com.fr.third.com.lowagie.text.Element; import com.fr.third.com.lowagie.text.Element;
import com.fr.third.com.lowagie.text.ElementTags; import com.fr.third.com.lowagie.text.ElementTags;
@ -64,12 +58,19 @@ import com.fr.third.com.lowagie.text.FontFactory;
import com.fr.third.com.lowagie.text.FontFactoryImp; import com.fr.third.com.lowagie.text.FontFactoryImp;
import com.fr.third.com.lowagie.text.ListItem; import com.fr.third.com.lowagie.text.ListItem;
import com.fr.third.com.lowagie.text.Paragraph; import com.fr.third.com.lowagie.text.Paragraph;
import com.fr.third.com.lowagie.text.html.Markup;
import com.fr.third.com.lowagie.text.html.HtmlTags; import com.fr.third.com.lowagie.text.html.HtmlTags;
import com.fr.third.com.lowagie.text.pdf.BaseFont; import com.fr.third.com.lowagie.text.html.IndentAttribute;
import com.fr.third.com.lowagie.text.html.Markup;
import com.fr.third.com.lowagie.text.html.ParseIndentAttrUtils;
import com.fr.third.com.lowagie.text.pdf.HyphenationAuto; import com.fr.third.com.lowagie.text.pdf.HyphenationAuto;
import com.fr.third.com.lowagie.text.pdf.HyphenationEvent; import com.fr.third.com.lowagie.text.pdf.HyphenationEvent;
import java.awt.Color;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Properties;
import java.util.StringTokenizer;
/** /**
* *
* @author psoares * @author psoares
@ -85,16 +86,24 @@ public class FactoryProperties {
public Chunk createChunk(String text, ChainedProperties props) { public Chunk createChunk(String text, ChainedProperties props) {
Font font = getFont(props); Font font = getFont(props);
float size = font.getSize(); float size = font.getSize();
size /= 2; size /= 3;
Chunk ck = new Chunk(text, font); Chunk ck = new Chunk(text, font);
if (props.hasProperty("sub")) if (props.hasProperty("sub"))
ck.setTextRise(-size); ck.setTextRise(-size);
else if (props.hasProperty("sup")) else if (props.hasProperty("sup"))
ck.setTextRise(size); ck.setTextRise(size);
ck.setHyphenation(getHyphenation(props)); ck.setHyphenation(getHyphenation(props));
if(props.hasProperty("background")){
ck.setBackground(props.getProperty("background"));
}
for(String padding : HtmlConstants.PADDING){
if(props.hasPropertyInChain("span", padding)){
String ss = props.getPropertyFromChain("span", padding);
ck.setAttribute(padding, ss);
}
}
return ck; return ck;
} }
private static void setParagraphLeading(Paragraph p, String leading) { private static void setParagraphLeading(Paragraph p, String leading) {
if (leading == null) { if (leading == null) {
p.setLeading(0, 1.5f); p.setLeading(0, 1.5f);
@ -126,6 +135,34 @@ public class FactoryProperties {
else if (value.equalsIgnoreCase("justify")) else if (value.equalsIgnoreCase("justify"))
p.setAlignment(Element.ALIGN_JUSTIFIED); p.setAlignment(Element.ALIGN_JUSTIFIED);
} }
if(props.hasPropertyInChain("div", "background")){
p.setBackground(props.getPropertyFromChain("div", "background"));
}
if(props.hasProperty("line-height")){
p.setAttribute("line-height", props.getProperty("line-height"));
}
for(String margin : HtmlConstants.MARGIN){
if(props.hasPropertyInChain("div", margin)){
String ss = props.getPropertyFromChain("div", margin);
p.setAttribute(margin, ss);
}
}
for(String padding : HtmlConstants.PADDING){
if(props.hasPropertyInChain("div", padding)){
String ss = props.getPropertyFromChain("div", padding);
p.setAttribute(padding, ss);
}
}
if(props.hasPropertyInChain("div", "text-indent")){
String ss = props.getPropertyFromChain("div", "text-indent");
p.setFirstLineIndent(Markup.parseLength(ss));
}
if(props.hasPropertyInChain("div", "width")){
String ss = props.getPropertyFromChain("div", "width");
p.setAttribute("width", ss);
}
p.setHyphenation(getHyphenation(props)); p.setHyphenation(getHyphenation(props));
setParagraphLeading(p, props.getProperty("leading")); setParagraphLeading(p, props.getProperty("leading"));
value = props.getProperty("before"); value = props.getProperty("before");
@ -191,10 +228,7 @@ public class FactoryProperties {
if (value != null) if (value != null)
size = Float.parseFloat(value); size = Float.parseFloat(value);
Color color = Markup.decodeColor(props.getProperty("color")); Color color = Markup.decodeColor(props.getProperty("color"));
String encoding = props.getProperty("encoding"); return new Font(face, size, style, color);
if (encoding == null)
encoding = BaseFont.WINANSI;
return fontImp.getFont(face, encoding, true, size, style, color);
} }
/** /**
@ -309,13 +343,22 @@ public class FactoryProperties {
else { else {
h.put("leading", v + ",0"); h.put("leading", v + ",0");
} }
} else if (key.equals(Markup.CSS_KEY_TEXTALIGN)) { } else if (key.equals(Markup.CSS_KEY_PADDING)) {
String ss = prop.getProperty(key).trim().toLowerCase();
IndentAttribute indentAttribute = ParseIndentAttrUtils.parseSpace(ss);
h.put(Markup.CSS_KEY_PADDINGTOP, indentAttribute.getTop() + "px");
h.put(Markup.CSS_KEY_PADDINGLEFT, indentAttribute.getLeft() + "px");
h.put(Markup.CSS_KEY_PADDINGBOTTOM, indentAttribute.getBottom() + "px");
h.put(Markup.CSS_KEY_PADDINGRIGHT, indentAttribute.getRight() + "px");
}
else if (key.equals(Markup.CSS_KEY_TEXTALIGN)) {
String ss = prop.getProperty(key).trim().toLowerCase(); String ss = prop.getProperty(key).trim().toLowerCase();
h.put("align", ss); h.put("align", ss);
} }
} }
} }
/** /**
* New method contributed by Lubos Strapko * New method contributed by Lubos Strapko
* @param h * @param h
@ -380,12 +423,17 @@ public class FactoryProperties {
return; return;
} }
h.put("leading", v + ",0"); h.put("leading", v + ",0");
h.put("line-height", ss);
} else if (key.equals(Markup.CSS_KEY_TEXTALIGN)) { } else if (key.equals(Markup.CSS_KEY_TEXTALIGN)) {
String ss = prop.getProperty(key).trim().toLowerCase(); String ss = prop.getProperty(key).trim().toLowerCase();
h.put("align", ss); h.put("align", ss);
} else if (key.equals(Markup.CSS_KEY_PADDINGLEFT)) { } else if (key.equals(Markup.CSS_KEY_BGCOLOR)) {
String ss = prop.getProperty(key).trim().toLowerCase(); String ss = prop.getProperty(key).trim().toLowerCase();
h.put("indent", Float.toString(Markup.parseLength(ss))); h.put("background", ss);
}
else{
String ss = prop.getProperty(key).trim();
h.put(key, ss);
} }
} }
} }

101
fine-itext-old/src/com/fr/third/com/lowagie/text/html/simpleparser/HTMLWorker.java

@ -50,16 +50,6 @@
package com.fr.third.com.lowagie.text.html.simpleparser; package com.fr.third.com.lowagie.text.html.simpleparser;
import java.io.File;
import java.io.IOException;
import java.io.Reader;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Stack;
import java.util.StringTokenizer;
import com.fr.third.com.lowagie.text.html.HtmlTags;
import com.fr.third.com.lowagie.text.html.Markup;
import com.fr.third.com.lowagie.text.Chunk; import com.fr.third.com.lowagie.text.Chunk;
import com.fr.third.com.lowagie.text.DocListener; import com.fr.third.com.lowagie.text.DocListener;
import com.fr.third.com.lowagie.text.DocumentException; import com.fr.third.com.lowagie.text.DocumentException;
@ -69,15 +59,32 @@ import com.fr.third.com.lowagie.text.ExceptionConverter;
import com.fr.third.com.lowagie.text.FontFactoryImp; import com.fr.third.com.lowagie.text.FontFactoryImp;
import com.fr.third.com.lowagie.text.HeaderFooter; import com.fr.third.com.lowagie.text.HeaderFooter;
import com.fr.third.com.lowagie.text.Image; import com.fr.third.com.lowagie.text.Image;
import com.fr.third.com.lowagie.text.List;
import com.fr.third.com.lowagie.text.ListItem; import com.fr.third.com.lowagie.text.ListItem;
import com.fr.third.com.lowagie.text.Paragraph; import com.fr.third.com.lowagie.text.Paragraph;
import com.fr.third.com.lowagie.text.Phrase; import com.fr.third.com.lowagie.text.Phrase;
import com.fr.third.com.lowagie.text.Rectangle; import com.fr.third.com.lowagie.text.Rectangle;
import com.fr.third.com.lowagie.text.TextElementArray; import com.fr.third.com.lowagie.text.TextElementArray;
import com.fr.third.com.lowagie.text.html.CSSUtils;
import com.fr.third.com.lowagie.text.html.HtmlTags;
import com.fr.third.com.lowagie.text.html.Markup;
import com.fr.third.com.lowagie.text.pdf.PdfPTable; import com.fr.third.com.lowagie.text.pdf.PdfPTable;
import com.fr.third.com.lowagie.text.pdf.draw.LineSeparator; import com.fr.third.com.lowagie.text.pdf.draw.LineSeparator;
import com.fr.third.com.lowagie.text.xml.simpleparser.SimpleXMLDocHandler; import com.fr.third.com.lowagie.text.xml.simpleparser.SimpleXMLDocHandler;
import com.fr.third.com.lowagie.text.xml.simpleparser.SimpleXMLParser; import com.fr.third.com.lowagie.text.xml.simpleparser.SimpleXMLParser;
import sun.misc.BASE64Decoder;
import javax.imageio.ImageIO;
import java.awt.image.BufferedImage;
import java.io.ByteArrayInputStream;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.io.Reader;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Stack;
import java.util.StringTokenizer;
public class HTMLWorker implements SimpleXMLDocHandler, DocListener { public class HTMLWorker implements SimpleXMLDocHandler, DocListener {
@ -176,11 +183,16 @@ public class HTMLWorker implements SimpleXMLDocHandler, DocListener {
cprops.addToChain("body", h); cprops.addToChain("body", h);
} }
public void startElement(String tag, HashMap h) { public void startElement(String tag, HashMap h) {
if (!tagsSupported.containsKey(tag)) if (!tagsSupported.containsKey(tag))
return; return;
try { try {
style.applyStyle(tag, h); style.applyStyle(tag, h);
if(tag.equals("p")){
h.put(Markup.CSS_KEY_MARGINTOP, "16px");
h.put(Markup.CSS_KEY_MARGINBOTTOM, "16px");
}
String follow = (String) FactoryProperties.followTags.get(tag); String follow = (String) FactoryProperties.followTags.get(tag);
if (follow != null) { if (follow != null) {
HashMap prop = new HashMap(); HashMap prop = new HashMap();
@ -285,6 +297,14 @@ public class HTMLWorker implements SimpleXMLDocHandler, DocListener {
} }
} }
} }
//处理base64编码图片
if(src.startsWith("data")){
BASE64Decoder decoder = new BASE64Decoder();
String[] srcArray = src.split(",");
String base64string = srcArray[srcArray.length -1];
byte[] bytes = decoder.decodeBuffer(base64string);
img = Image.getInstance(bytes);
}
if (img == null) { if (img == null) {
if (!src.startsWith("http")) { if (!src.startsWith("http")) {
String path = cprops.getProperty("image_path"); String path = cprops.getProperty("image_path");
@ -294,6 +314,10 @@ public class HTMLWorker implements SimpleXMLDocHandler, DocListener {
} }
img = Image.getInstance(src); img = Image.getInstance(src);
} }
if(img == null){
return;
}
img.setSrcString(src);
String align = (String) h.get("align"); String align = (String) h.get("align");
String width = (String) h.get("width"); String width = (String) h.get("width");
String height = (String) h.get("height"); String height = (String) h.get("height");
@ -342,12 +366,22 @@ public class HTMLWorker implements SimpleXMLDocHandler, DocListener {
document.add(img); document.add(img);
cprops.removeChain(tag); cprops.removeChain(tag);
} else { } else {
Chunk ck = new Chunk(img, 0, 0);
if(cprops.hasPropertyInChain("img", "padding-left")){
String ss = cprops.getPropertyFromChain("img", "padding-left");
ck.setAttribute("padding-left", Float.toString(Markup.parseLength(ss)));
}
if(cprops.hasPropertyInChain("img", "padding-right")){
String ss = cprops.getPropertyFromChain("img", "padding-right");
ck.setAttribute("padding-right", Float.toString(Markup.parseLength(ss)));
}
cprops.removeChain(tag); cprops.removeChain(tag);
if (currentParagraph == null) { if (currentParagraph == null) {
currentParagraph = FactoryProperties currentParagraph = FactoryProperties
.createParagraph(cprops); .createParagraph(cprops);
} }
currentParagraph.add(new Chunk(img, 0, 0));
currentParagraph.add(ck);
} }
return; return;
} }
@ -366,7 +400,7 @@ public class HTMLWorker implements SimpleXMLDocHandler, DocListener {
endElement(HtmlTags.LISTITEM); endElement(HtmlTags.LISTITEM);
skipText = true; skipText = true;
cprops.addToChain(tag, h); cprops.addToChain(tag, h);
com.fr.third.com.lowagie.text.List list = new com.fr.third.com.lowagie.text.List(false); List list = new List(false);
try{ try{
list.setIndentationLeft(new Float(cprops.getProperty("indent")).floatValue()); list.setIndentationLeft(new Float(cprops.getProperty("indent")).floatValue());
}catch (Exception e) { }catch (Exception e) {
@ -381,7 +415,7 @@ public class HTMLWorker implements SimpleXMLDocHandler, DocListener {
endElement(HtmlTags.LISTITEM); endElement(HtmlTags.LISTITEM);
skipText = true; skipText = true;
cprops.addToChain(tag, h); cprops.addToChain(tag, h);
com.fr.third.com.lowagie.text.List list = new com.fr.third.com.lowagie.text.List(true); List list = new List(true);
try{ try{
list.setIndentationLeft(new Float(cprops.getProperty("indent")).floatValue()); list.setIndentationLeft(new Float(cprops.getProperty("indent")).floatValue());
}catch (Exception e) { }catch (Exception e) {
@ -443,6 +477,30 @@ public class HTMLWorker implements SimpleXMLDocHandler, DocListener {
} }
} }
public BufferedImage GetBufferedImage(String base64string)
{
BufferedImage image = null;
try {
InputStream stream = BaseToInputStream(base64string);
image = ImageIO.read(stream);
} catch (IOException e) {
e.printStackTrace();
}
return image;
}
public InputStream BaseToInputStream(String base64string){
ByteArrayInputStream stream = null;
try {
BASE64Decoder decoder = new BASE64Decoder();
byte[] bytes1 = decoder.decodeBuffer(base64string);
stream = new ByteArrayInputStream(bytes1);
} catch (Exception e) {
}
return stream;
}
public void endElement(String tag) { public void endElement(String tag) {
if (!tagsSupported.containsKey(tag)) if (!tagsSupported.containsKey(tag))
return; return;
@ -510,7 +568,7 @@ public class HTMLWorker implements SimpleXMLDocHandler, DocListener {
if (stack.empty()) if (stack.empty())
return; return;
Object obj = stack.pop(); Object obj = stack.pop();
if (!(obj instanceof com.fr.third.com.lowagie.text.List)) { if (!(obj instanceof List)) {
stack.push(obj); stack.push(obj);
return; return;
} }
@ -536,12 +594,12 @@ public class HTMLWorker implements SimpleXMLDocHandler, DocListener {
return; return;
} }
Object list = stack.pop(); Object list = stack.pop();
if (!(list instanceof com.fr.third.com.lowagie.text.List)) { if (!(list instanceof List)) {
stack.push(list); stack.push(list);
return; return;
} }
ListItem item = (ListItem) obj; ListItem item = (ListItem) obj;
((com.fr.third.com.lowagie.text.List) list).add(item); ((List) list).add(item);
ArrayList cks = item.getChunks(); ArrayList cks = item.getChunks();
if (!cks.isEmpty()) if (!cks.isEmpty())
item.getListSymbol() item.getListSymbol()
@ -588,6 +646,8 @@ public class HTMLWorker implements SimpleXMLDocHandler, DocListener {
if (pendingTD) if (pendingTD)
endElement("td"); endElement("td");
pendingTR = false; pendingTR = false;
String rowHeightPx = cprops.getLastChainProperty("height");
cprops.removeChain("tr"); cprops.removeChain("tr");
ArrayList cells = new ArrayList(); ArrayList cells = new ArrayList();
IncTable table = null; IncTable table = null;
@ -601,8 +661,13 @@ public class HTMLWorker implements SimpleXMLDocHandler, DocListener {
break; break;
} }
} }
float rowHeight = 0.0f;
if(rowHeightPx!=null){
rowHeight = CSSUtils.parseFloat(rowHeightPx);
}
table.addCols(cells); table.addCols(cells);
table.endRow(); table.endRow(rowHeight);
stack.push(table); stack.push(table);
skipText = true; skipText = true;
return; return;
@ -705,7 +770,7 @@ public class HTMLWorker implements SimpleXMLDocHandler, DocListener {
} }
/** /**
* @see com.fr.third.com.lowagie.text.DocListener#setMarginMirroring(boolean) * @see DocListener#setMarginMirroring(boolean)
* @since 2.1.6 * @since 2.1.6
*/ */
public boolean setMarginMirroringTopBottom(boolean marginMirroring) { public boolean setMarginMirroringTopBottom(boolean marginMirroring) {

45
fine-itext-old/src/com/fr/third/com/lowagie/text/html/simpleparser/HtmlConstants.java

@ -0,0 +1,45 @@
package com.fr.third.com.lowagie.text.html.simpleparser;
import com.fr.third.com.lowagie.text.html.HtmlTags;
import com.fr.third.com.lowagie.text.html.Markup;
import java.util.ArrayList;
import java.util.List;
/**
* @author kerry
* @date 2018/5/2
*/
public class HtmlConstants {
//块级元素集合
public static final List<String> BLOCK_ELEMENTS = new ArrayList<String>();
//行内元素集合
public static final List<String> INLINE_ELEMENTS = new ArrayList<String>();
//支持解析的属性
public static final List<String> PADDING = new ArrayList<String>();
public static final List<String> MARGIN = new ArrayList<String>();
static {
BLOCK_ELEMENTS.add(HtmlTags.DIV);
BLOCK_ELEMENTS.add(HtmlTags.UNORDEREDLIST);
BLOCK_ELEMENTS.add(HtmlTags.PARAGRAPH);
BLOCK_ELEMENTS.add(HtmlTags.ORDEREDLIST);
BLOCK_ELEMENTS.add(HtmlTags.TABLE);
INLINE_ELEMENTS.add(HtmlTags.SPAN);
INLINE_ELEMENTS.add(HtmlTags.IMAGE);
INLINE_ELEMENTS.add(HtmlTags.STRONG);
INLINE_ELEMENTS.add(HtmlTags.ANCHOR);
INLINE_ELEMENTS.add(HtmlTags.SUB);
INLINE_ELEMENTS.add(HtmlTags.SUP);
INLINE_ELEMENTS.add(HtmlTags.I);
INLINE_ELEMENTS.add(HtmlTags.U);
INLINE_ELEMENTS.add(HtmlTags.EM);
PADDING.add(Markup.CSS_KEY_PADDINGLEFT);
PADDING.add(Markup.CSS_KEY_PADDINGRIGHT);
PADDING.add(Markup.CSS_KEY_PADDINGTOP);
PADDING.add(Markup.CSS_KEY_PADDINGBOTTOM);
MARGIN.add(Markup.CSS_KEY_MARGINLEFT);
MARGIN.add(Markup.CSS_KEY_MARGINRIGHT);
MARGIN.add(Markup.CSS_KEY_MARGINTOP);
MARGIN.add(Markup.CSS_KEY_MARGINBOTTOM);
}
}

76
fine-itext-old/src/com/fr/third/com/lowagie/text/html/simpleparser/IncCell.java

@ -48,13 +48,17 @@
package com.fr.third.com.lowagie.text.html.simpleparser; package com.fr.third.com.lowagie.text.html.simpleparser;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.HashMap;
import java.util.Map;
import com.fr.third.com.lowagie.text.Element; import com.fr.third.com.lowagie.text.Element;
import com.fr.third.com.lowagie.text.ElementListener; import com.fr.third.com.lowagie.text.ElementListener;
import com.fr.third.com.lowagie.text.Phrase;
import com.fr.third.com.lowagie.text.TextElementArray; import com.fr.third.com.lowagie.text.TextElementArray;
import com.fr.third.com.lowagie.text.html.CSSUtils;
import com.fr.third.com.lowagie.text.html.Markup; import com.fr.third.com.lowagie.text.html.Markup;
import com.fr.third.com.lowagie.text.pdf.PdfPCell; import com.fr.third.com.lowagie.text.pdf.PdfPCell;
import com.fr.third.com.lowagie.text.Phrase;
/** /**
* *
* @author psoares * @author psoares
@ -94,14 +98,52 @@ public class IncCell implements TextElementArray {
value = props.getProperty("border"); value = props.getProperty("border");
float border = 0; float border = 0;
if (value != null) if (value != null)
border = Float.parseFloat(value); border = CSSUtils.parseFloat(value);
cell.setBorderWidth(border); cell.setBorderWidth(border);
value = props.getProperty("cellpadding"); value = props.getProperty("cellpadding");
if (value != null) if (value != null)
cell.setPadding(Float.parseFloat(value)); cell.setPadding(CSSUtils.parseFloat(value));
cell.setUseDescender(true); cell.setUseDescender(true);
value = props.getProperty("bgcolor"); value = props.getProperty("bgcolor");
cell.setBackgroundColor(Markup.decodeColor(value)); cell.setBackgroundColor(Markup.decodeColor(value));
//解析td上声明的width
value = props.getLastChainProperty("width");
if(value != null){
cell.setStyleWidth(CSSUtils.parseFloat(value));
}
//解析td上声明的height
value = props.getLastChainProperty("height");
if(value != null){
cell.setStyleHeight(CSSUtils.parseFloat(value));
}
//解析background相关属性并保存到cell对象
Map<String, String> backgroundRules = new HashMap<String, String>();
value = props.getLastChainProperty("background-size");
if(value!=null){
backgroundRules.put("background-size", value);
}
value = props.getLastChainProperty("background");
if(value!=null){
Map<String, String> backgroundStyles = CSSUtils.processBackground(value);
backgroundRules.putAll(backgroundStyles);
}
value = props.getLastChainProperty("background-color");
if(value!=null){
backgroundRules.put("background-color", value);
}
value = props.getLastChainProperty("background-position");
if(value!=null){
backgroundRules.put("background-position", value);
}
value = props.getLastChainProperty("background-repeat");
if(value!=null){
backgroundRules.put("background-repeat", value);
}
value = props.getLastChainProperty("background-image");
if(value!=null){
backgroundRules.put("background-image", value);
}
cell.setBackground(backgroundRules);
} }
public boolean add(Object o) { public boolean add(Object o) {
@ -127,19 +169,19 @@ public class IncCell implements TextElementArray {
return cell; return cell;
} }
/** /**
* @see com.fr.third.com.lowagie.text.Element#isContent() * @see Element#isContent()
* @since iText 2.0.8 * @since iText 2.0.8
*/ */
public boolean isContent() { public boolean isContent() {
return true; return true;
} }
/** /**
* @see com.fr.third.com.lowagie.text.Element#isNestable() * @see Element#isNestable()
* @since iText 2.0.8 * @since iText 2.0.8
*/ */
public boolean isNestable() { public boolean isNestable() {
return true; return true;
} }
} }

100
fine-itext-old/src/com/fr/third/com/lowagie/text/html/simpleparser/IncTable.java

@ -51,8 +51,12 @@ import java.util.ArrayList;
import java.util.Collections; import java.util.Collections;
import java.util.HashMap; import java.util.HashMap;
import com.fr.third.com.lowagie.text.pdf.PdfPCell; import com.fr.third.com.lowagie.text.html.CSSUtils;
import com.fr.third.com.lowagie.text.html.Markup;
import com.fr.third.com.lowagie.text.pdf.BorderStyle;
import com.fr.third.com.lowagie.text.pdf.PdfPTable; import com.fr.third.com.lowagie.text.pdf.PdfPTable;
import com.fr.third.com.lowagie.text.pdf.PdfPCell;
import com.fr.third.com.lowagie.text.pdf.TableProperties;
/** /**
* *
@ -62,6 +66,8 @@ public class IncTable {
private HashMap props = new HashMap(); private HashMap props = new HashMap();
private ArrayList rows = new ArrayList(); private ArrayList rows = new ArrayList();
private ArrayList cols; private ArrayList cols;
private ArrayList<Float> rowHeights = new ArrayList<Float>();
/** Creates a new instance of IncTable */ /** Creates a new instance of IncTable */
public IncTable(HashMap props) { public IncTable(HashMap props) {
this.props.putAll(props); this.props.putAll(props);
@ -80,7 +86,8 @@ public class IncTable {
cols.addAll(ncols); cols.addAll(ncols);
} }
public void endRow() { public void endRow(float rowHeight) {
rowHeights.add(rowHeight);
if (cols != null) { if (cols != null) {
Collections.reverse(cols); Collections.reverse(cols);
rows.add(cols); rows.add(cols);
@ -97,27 +104,88 @@ public class IncTable {
return new PdfPTable(1); return new PdfPTable(1);
int ncol = 0; int ncol = 0;
ArrayList c0 = (ArrayList)rows.get(0); ArrayList c0 = (ArrayList)rows.get(0);
ArrayList<Float> colWidths = new ArrayList<Float>();
for (int k = 0; k < c0.size(); ++k) { for (int k = 0; k < c0.size(); ++k) {
ncol += ((PdfPCell)c0.get(k)).getColspan(); PdfPCell pCell = ((PdfPCell)c0.get(k));
int cellCols = pCell.getColspan();
ncol += cellCols;
if(cellCols > 1){
for(int a = 0; a < cellCols ; a++){
colWidths.add(pCell.getStyleWidth()/cellCols);
}
}else {
colWidths.add(pCell.getStyleWidth());
}
} }
PdfPTable table = new PdfPTable(ncol); PdfPTable table = new PdfPTable(ncol);
String width = (String)props.get("width"); try {
if (width == null) TableProperties tableProperties = parseTableProperties();
table.setWidthPercentage(100); table.setTableProperties(tableProperties);
else { String width = (String)props.get("width");
if (width.endsWith("%")) if (width == null)
table.setWidthPercentage(Float.parseFloat(width.substring(0, width.length() - 1))); table.setWidthPercentage(100);
else { else {
table.setTotalWidth(Float.parseFloat(width)); if (width.endsWith("%"))
table.setLockedWidth(true); table.setWidthPercentage(CSSUtils.parseFloat(width));
else {
//解析单元格宽度
float totalWidth = CSSUtils.parseFloat(width);
float[] floats = new float[colWidths.size()];
for (int a = 0; a < colWidths.size(); a++){
floats[a] = colWidths.get(a);
}
//解析px数值
table.setTotalWidth(totalWidth);
try {
table.setWidths(floats);
}catch (Exception e){
e.printStackTrace();
}
table.setLockedWidth(true);
}
} }
} for (int row = 0; row < rows.size(); ++row) {
for (int row = 0; row < rows.size(); ++row) { ArrayList col = (ArrayList)rows.get(row);
ArrayList col = (ArrayList)rows.get(row); for (int k = 0; k < col.size(); ++k) {
for (int k = 0; k < col.size(); ++k) { table.addCell((PdfPCell)col.get(k));
table.addCell((PdfPCell)col.get(k)); }
} }
//调整行高
for(int a = 0; a < rowHeights.size(); a++){
table.getRow(a).setStyleHeight(rowHeights.get(a));
}
}catch (Exception e){
e.printStackTrace();
} }
return table; return table;
} }
public TableProperties parseTableProperties(){
TableProperties tableProperties = new TableProperties();
BorderStyle borderStyle = new BorderStyle();
tableProperties.setBorderStyle(borderStyle);
String value = (String)props.get("border");
if(value != null){
borderStyle.setBorderWidth(CSSUtils.parseFloat(value));
}
value = (String)props.get("border-color");
if(value != null){
borderStyle.setBorderColor(Markup.decodeColor(value));
}
value = (String)props.get("border-collapse");
if(value != null){
tableProperties.setCollapse(value.equals("collapse"));
}
value = (String)props.get("cellspacing");
if(value != null){
tableProperties.setCellspacing(CSSUtils.parseFloat(value));
}
value = (String)props.get("cellpadding");
if(value != null){
tableProperties.setCellpadding(CSSUtils.parseFloat(value));
}
return tableProperties;
}
} }

58
fine-itext-old/src/com/fr/third/com/lowagie/text/pdf/BorderStyle.java

@ -0,0 +1,58 @@
package com.fr.third.com.lowagie.text.pdf;
import com.fr.third.com.lowagie.text.DocumentException;
import com.fr.third.com.lowagie.text.html.CSSUtils;
import com.fr.third.com.lowagie.text.html.Markup;
import java.awt.Color;
public class BorderStyle {
private float borderWidth = 0.0f;
private Color borderColor = Color.black;
private String borderPattern = "solid";
public float getBorderWidth() {
return borderWidth;
}
public void setBorderWidth(float borderWidth) {
this.borderWidth = borderWidth;
}
public Color getBorderColor() {
return borderColor;
}
public void setBorderColor(Color borderColor) {
this.borderColor = borderColor;
}
public String getBorderPattern() {
return borderPattern;
}
public void setBorderPattern(String borderPattern) {
this.borderPattern = borderPattern;
}
public BorderStyle() {
}
public BorderStyle(int borderWidth, String borderPattern, Color borderColor) {
this.borderWidth = borderWidth;
this.borderPattern = borderPattern;
this.borderWidth = borderWidth;
}
public static BorderStyle parseBorderStyle(String borderString) throws DocumentException {
BorderStyle borderStyle = new BorderStyle();
String[] borderPros = borderString.split(" ");
borderStyle.setBorderWidth(CSSUtils.parseFloat(borderPros[0]));
borderStyle.setBorderPattern(borderPros[1]);
borderStyle.setBorderColor(Markup.decodeColor(borderPros[2]));
return borderStyle;
}
}

269
fine-itext-old/src/com/fr/third/com/lowagie/text/pdf/PdfPCell.java

@ -50,21 +50,53 @@
package com.fr.third.com.lowagie.text.pdf; package com.fr.third.com.lowagie.text.pdf;
import java.util.List; import java.util.List;
import java.util.Map;
import com.fr.Container;
import com.fr.third.com.lowagie.text.Chunk; import com.fr.third.com.lowagie.text.Chunk;
import com.fr.third.com.lowagie.text.DocumentException; import com.fr.third.com.lowagie.text.DocumentException;
import com.fr.third.com.lowagie.text.Element; import com.fr.third.com.lowagie.text.Element;
import com.fr.third.com.lowagie.text.ExceptionConverter; import com.fr.third.com.lowagie.text.ExceptionConverter;
import com.fr.third.com.lowagie.text.Image; import com.fr.third.com.lowagie.text.Image;
import com.fr.third.com.lowagie.text.Phrase;
import com.fr.third.com.lowagie.text.Rectangle; import com.fr.third.com.lowagie.text.Rectangle;
import com.fr.third.com.lowagie.text.pdf.events.PdfPCellEventForwarder; import com.fr.third.com.lowagie.text.pdf.events.PdfPCellEventForwarder;
import com.fr.third.com.lowagie.text.Phrase;
/** /**
* A cell in a PdfPTable. * A cell in a PdfPTable.
*/ */
public class PdfPCell extends Rectangle{ public class PdfPCell extends Rectangle {
private float styleWidth = 0.0f;
private float styleHeight = 0.0f;
public float getStyleHeight() {
return styleHeight;
}
public void setStyleHeight(float styleHeight) {
this.styleHeight = styleHeight;
}
public float getStyleWidth() {
return styleWidth;
}
public Map<String, String> background ;
public Map<String, String> getBackground() {
return background;
}
public void setBackground(Map<String, String> background) {
this.background = background;
}
public void setStyleWidth(float styleWidth) {
this.styleWidth = styleWidth;
}
private ColumnText column = new ColumnText(null); private ColumnText column = new ColumnText(null);
@ -212,21 +244,21 @@ public class PdfPCell extends Rectangle{
table.setExtendLastRow(true); table.setExtendLastRow(true);
column.addElement(table); column.addElement(table);
if (style != null) { if (style != null) {
cloneNonPositionParameters(style); cloneNonPositionParameters(style);
verticalAlignment = style.verticalAlignment; verticalAlignment = style.verticalAlignment;
paddingLeft = style.paddingLeft; paddingLeft = style.paddingLeft;
paddingRight = style.paddingRight; paddingRight = style.paddingRight;
paddingTop = style.paddingTop; paddingTop = style.paddingTop;
paddingBottom = style.paddingBottom; paddingBottom = style.paddingBottom;
colspan = style.colspan; colspan = style.colspan;
rowspan = style.rowspan; rowspan = style.rowspan;
cellEvent = style.cellEvent; cellEvent = style.cellEvent;
useDescender = style.useDescender; useDescender = style.useDescender;
useBorderPadding = style.useBorderPadding; useBorderPadding = style.useBorderPadding;
rotation = style.rotation; rotation = style.rotation;
} }
else else
setPadding(0); setPadding(0);
} }
/** /**
@ -256,6 +288,9 @@ public class PdfPCell extends Rectangle{
column = ColumnText.duplicate(cell.column); column = ColumnText.duplicate(cell.column);
useBorderPadding = cell.useBorderPadding; useBorderPadding = cell.useBorderPadding;
rotation = cell.rotation; rotation = cell.rotation;
background = cell.background;
styleWidth = cell.styleWidth;
styleHeight = cell.styleHeight;
} }
/** /**
@ -339,11 +374,11 @@ public class PdfPCell extends Rectangle{
* @return effective value of property paddingLeft. * @return effective value of property paddingLeft.
*/ */
public float getEffectivePaddingLeft() { public float getEffectivePaddingLeft() {
if (isUseBorderPadding()) { if (isUseBorderPadding()) {
float border = getBorderWidthLeft() / (isUseVariableBorders() ? 1f : 2f); float border = getBorderWidthLeft() / (isUseVariableBorders() ? 1f : 2f);
return paddingLeft + border; return paddingLeft + border;
} }
return paddingLeft; return paddingLeft;
} }
/** /**
@ -369,11 +404,11 @@ public class PdfPCell extends Rectangle{
* @return effective value of property paddingRight. * @return effective value of property paddingRight.
*/ */
public float getEffectivePaddingRight() { public float getEffectivePaddingRight() {
if (isUseBorderPadding()) { if (isUseBorderPadding()) {
float border = getBorderWidthRight() / (isUseVariableBorders() ? 1f : 2f); float border = getBorderWidthRight() / (isUseVariableBorders() ? 1f : 2f);
return paddingRight + border; return paddingRight + border;
} }
return paddingRight; return paddingRight;
} }
/** /**
@ -401,10 +436,10 @@ public class PdfPCell extends Rectangle{
* @return effective value of property paddingTop. * @return effective value of property paddingTop.
*/ */
public float getEffectivePaddingTop() { public float getEffectivePaddingTop() {
if (isUseBorderPadding()) { if (isUseBorderPadding()) {
float border = getBorderWidthTop()/(isUseVariableBorders()?1f:2f); float border = getBorderWidthTop()/(isUseVariableBorders()?1f:2f);
return paddingTop + border; return paddingTop + border;
} }
return paddingTop; return paddingTop;
} }
@ -434,10 +469,10 @@ public class PdfPCell extends Rectangle{
* @return effective value of property paddingBottom. * @return effective value of property paddingBottom.
*/ */
public float getEffectivePaddingBottom() { public float getEffectivePaddingBottom() {
if (isUseBorderPadding()) { if (isUseBorderPadding()) {
float border = getBorderWidthBottom()/(isUseVariableBorders()?1f:2f); float border = getBorderWidthBottom()/(isUseVariableBorders()?1f:2f);
return paddingBottom + border; return paddingBottom + border;
} }
return paddingBottom; return paddingBottom;
} }
@ -583,7 +618,7 @@ public class PdfPCell extends Rectangle{
* @since 2.1.5 * @since 2.1.5
*/ */
public boolean hasFixedHeight() { public boolean hasFixedHeight() {
return getFixedHeight() > 0; return getFixedHeight() > 0;
} }
/** /**
@ -613,7 +648,7 @@ public class PdfPCell extends Rectangle{
* @since 2.1.5 * @since 2.1.5
*/ */
public boolean hasMinimumHeight() { public boolean hasMinimumHeight() {
return getMinimumHeight() > 0; return getMinimumHeight() > 0;
} }
/** /**
@ -808,18 +843,18 @@ public class PdfPCell extends Rectangle{
* @param cellEvent the cell event * @param cellEvent the cell event
*/ */
public void setCellEvent(PdfPCellEvent cellEvent) { public void setCellEvent(PdfPCellEvent cellEvent) {
if (cellEvent == null) if (cellEvent == null)
this.cellEvent = null; this.cellEvent = null;
else if (this.cellEvent == null) else if (this.cellEvent == null)
this.cellEvent = cellEvent; this.cellEvent = cellEvent;
else if (this.cellEvent instanceof PdfPCellEventForwarder) else if (this.cellEvent instanceof PdfPCellEventForwarder)
((PdfPCellEventForwarder)this.cellEvent).addCellEvent(cellEvent); ((PdfPCellEventForwarder)this.cellEvent).addCellEvent(cellEvent);
else { else {
PdfPCellEventForwarder forward = new PdfPCellEventForwarder(); PdfPCellEventForwarder forward = new PdfPCellEventForwarder();
forward.addCellEvent(this.cellEvent); forward.addCellEvent(this.cellEvent);
forward.addCellEvent(cellEvent); forward.addCellEvent(cellEvent);
this.cellEvent = forward; this.cellEvent = forward;
} }
} }
/** /**
@ -894,7 +929,7 @@ public class PdfPCell extends Rectangle{
* @since 2.1.1 * @since 2.1.1
*/ */
public List getCompositeElements() { public List getCompositeElements() {
return getColumn().compositeElements; return getColumn().compositeElements;
} }
/** /**
@ -943,71 +978,81 @@ public class PdfPCell extends Rectangle{
column.setSimpleColumn(leftLimit, bry + 0.001f, rightLimit, 0); column.setSimpleColumn(leftLimit, bry + 0.001f, rightLimit, 0);
} }
else { else {
column.setSimpleColumn(0, leftLimit, bry + 0.001f, rightLimit); column.setSimpleColumn(0, leftLimit, bry + 0.001f, rightLimit);
} }
try { try {
column.go(true); column.go(true);
} catch (DocumentException e) { } catch (DocumentException e) {
// do nothing // do nothing
} }
} }
/** /**
* Returns the height of the cell. * Returns the height of the cell.
* @return the height of the cell * @return the height of the cell
* @since 3.0.0 * @since 3.0.0
*/ */
public float getMaxHeight() { public float getMaxHeight() {
boolean pivoted = (getRotation() == 90 || getRotation() == 270); boolean pivoted = (getRotation() == 90 || getRotation() == 270);
Image img = getImage(); Image img = getImage();
if (img != null) { if (img != null) {
img.scalePercent(100); img.scalePercent(100);
float refWidth = pivoted ? img.getScaledHeight() : img.getScaledWidth(); float refWidth = pivoted ? img.getScaledHeight() : img.getScaledWidth();
float scale = (getRight() - getEffectivePaddingRight() float scale = (getRight() - getEffectivePaddingRight()
- getEffectivePaddingLeft() - getLeft()) / refWidth; - getEffectivePaddingLeft() - getLeft()) / refWidth;
img.scalePercent(scale * 100); img.scalePercent(scale * 100);
float refHeight = pivoted ? img.getScaledWidth() : img.getScaledHeight(); float refHeight = pivoted ? img.getScaledWidth() : img.getScaledHeight();
setBottom(getTop() - getEffectivePaddingTop() - getEffectivePaddingBottom() - refHeight); setBottom(getTop() - getEffectivePaddingTop() - getEffectivePaddingBottom() - refHeight);
} }
else { else {
if (pivoted && hasFixedHeight()) if (pivoted && hasFixedHeight())
setBottom(getTop() - getFixedHeight()); setBottom(getTop() - getFixedHeight());
else { else {
ColumnText ct = ColumnText.duplicate(getColumn()); ColumnText ct = ColumnText.duplicate(getColumn());
float right, top, left, bottom; float right, top, left, bottom;
if (pivoted) { if (pivoted) {
right = PdfPRow.RIGHT_LIMIT; right = PdfPRow.RIGHT_LIMIT;
top = getRight() - getEffectivePaddingRight(); top = getRight() - getEffectivePaddingRight();
left = 0; left = 0;
bottom = getLeft() + getEffectivePaddingLeft(); bottom = getLeft() + getEffectivePaddingLeft();
} }
else { else {
right = isNoWrap() ? PdfPRow.RIGHT_LIMIT : getRight() - getEffectivePaddingRight(); right = isNoWrap() ? PdfPRow.RIGHT_LIMIT : getRight() - getEffectivePaddingRight();
top = getTop() - getEffectivePaddingTop(); top = getTop() - getEffectivePaddingTop();
left = getLeft() + getEffectivePaddingLeft(); left = getLeft() + getEffectivePaddingLeft();
bottom = hasFixedHeight() ? top + getEffectivePaddingBottom() - getFixedHeight() : PdfPRow.BOTTOM_LIMIT; bottom = hasFixedHeight() ? top + getEffectivePaddingBottom() - getFixedHeight() : PdfPRow.BOTTOM_LIMIT;
} }
PdfPRow.setColumn(ct, left, bottom, right, top); PdfPRow.setColumn(ct, left, bottom, right, top);
try { try {
ct.go(true); ct.go(true);
} catch (DocumentException e) { } catch (DocumentException e) {
throw new ExceptionConverter(e); throw new ExceptionConverter(e);
} }
if (pivoted) if (pivoted)
setBottom(getTop() - getEffectivePaddingTop() - getEffectivePaddingBottom() - ct.getFilledWidth()); setBottom(getTop() - getEffectivePaddingTop() - getEffectivePaddingBottom() - ct.getFilledWidth());
else { else {
float yLine = ct.getYLine(); float yLine = ct.getYLine();
if (isUseDescender()) if (isUseDescender())
yLine += ct.getDescender(); yLine += ct.getDescender();
setBottom(yLine - getEffectivePaddingBottom()); setBottom(yLine - getEffectivePaddingBottom());
} }
} }
} }
float height = getHeight(); float height = getHeight();
if (height < getFixedHeight()) if (height < getFixedHeight())
height = getFixedHeight(); height = getFixedHeight();
else if (height < getMinimumHeight()) else if (height < getMinimumHeight())
height = getMinimumHeight(); height = getMinimumHeight();
return height; return height;
} }
private Container container;
public Container getContainer() {
return container;
}
public void addContent(Container container){
this.container = container;
}
} }

432
fine-itext-old/src/com/fr/third/com/lowagie/text/pdf/PdfPRow.java

@ -51,9 +51,9 @@ package com.fr.third.com.lowagie.text.pdf;
import java.awt.Color; import java.awt.Color;
import com.fr.third.com.lowagie.text.ExceptionConverter;
import com.fr.third.com.lowagie.text.DocumentException; import com.fr.third.com.lowagie.text.DocumentException;
import com.fr.third.com.lowagie.text.Element; import com.fr.third.com.lowagie.text.Element;
import com.fr.third.com.lowagie.text.ExceptionConverter;
import com.fr.third.com.lowagie.text.Image; import com.fr.third.com.lowagie.text.Image;
import com.fr.third.com.lowagie.text.Rectangle; import com.fr.third.com.lowagie.text.Rectangle;
@ -76,6 +76,16 @@ public class PdfPRow {
protected float widths[]; protected float widths[];
private float styleHeight;
public float getStyleHeight() {
return styleHeight;
}
public void setStyleHeight(float styleHeight) {
this.styleHeight = styleHeight;
}
/** /**
* extra heights that needs to be added to a cell because of rowspans. * extra heights that needs to be added to a cell because of rowspans.
* @since 2.1.6 * @since 2.1.6
@ -86,7 +96,7 @@ public class PdfPRow {
protected boolean calculated = false; protected boolean calculated = false;
private int[] canvasesPos; private int[] canvasesPos;
/** /**
* Constructs a new PdfPRow with the cells in the array that was passed * Constructs a new PdfPRow with the cells in the array that was passed
@ -179,37 +189,23 @@ public class PdfPRow {
*/ */
public float calculateHeights() { public float calculateHeights() {
maxHeight = 0; maxHeight = 0;
// @change for (int k = 0; k < cells.length; ++k) {
int rowSpan = Integer.MAX_VALUE;
boolean hasAboveRowSpan = false;
float max_height = 0.0f;
for (int k = 0; k < cells.length;) {
PdfPCell cell = cells[k]; PdfPCell cell = cells[k];
float height = 0; float height = 0;
if (cell == null) { if (cell == null) {
hasAboveRowSpan = true;
k++;
continue; continue;
} }
else { else {
height = cell.getMaxHeight(); height = cell.getStyleHeight() == 0 ? cell.getContainer().getHeight() : cell.getStyleHeight();
if (cell.getRowspan() == rowSpan && height > max_height) { if ((height > maxHeight) && (cell.getRowspan() == 1))
max_height = height; maxHeight = height;
} else if (cell.getRowspan() < rowSpan) {
rowSpan = cell.getRowspan();
max_height = height;
}
k += cell.getColspan();
} }
} }
calculated = true; calculated = true;
// carl:假如有格子是从属于一个rowSpan的格子,而这个格子的主格不在这一行(当然这样的假设建立在格子是满的情况下。) return maxHeight = Math.max(styleHeight, maxHeight);
if (!hasAboveRowSpan || rowSpan == 1) {
maxHeight = max_height;
}
return maxHeight;
} }
/** /**
* Writes the border and background of one cell in the row. * Writes the border and background of one cell in the row.
* *
@ -250,44 +246,44 @@ public class PdfPRow {
/** /**
* @since 2.1.6 private is now protected * @since 2.1.6 private is now protected
*/ */
protected void saveAndRotateCanvases(PdfContentByte[] canvases, float a, float b, float c, float d, float e, float f) { protected void saveAndRotateCanvases(PdfContentByte[] canvases, float a, float b, float c, float d, float e, float f) {
int last = PdfPTable.TEXTCANVAS + 1; int last = PdfPTable.TEXTCANVAS + 1;
if (canvasesPos == null) if (canvasesPos == null)
canvasesPos = new int[last * 2]; canvasesPos = new int[last * 2];
for (int k = 0; k < last; ++k) { for (int k = 0; k < last; ++k) {
ByteBuffer bb = canvases[k].getInternalBuffer(); ByteBuffer bb = canvases[k].getInternalBuffer();
canvasesPos[k * 2] = bb.size(); canvasesPos[k * 2] = bb.size();
canvases[k].saveState(); canvases[k].saveState();
canvases[k].concatCTM(a, b, c, d, e, f); canvases[k].concatCTM(a, b, c, d, e, f);
canvasesPos[k * 2 + 1] = bb.size(); canvasesPos[k * 2 + 1] = bb.size();
} }
} }
/** /**
* @since 2.1.6 private is now protected * @since 2.1.6 private is now protected
*/ */
protected void restoreCanvases(PdfContentByte[] canvases) { protected void restoreCanvases(PdfContentByte[] canvases) {
int last = PdfPTable.TEXTCANVAS + 1; int last = PdfPTable.TEXTCANVAS + 1;
for (int k = 0; k < last; ++k) { for (int k = 0; k < last; ++k) {
ByteBuffer bb = canvases[k].getInternalBuffer(); ByteBuffer bb = canvases[k].getInternalBuffer();
int p1 = bb.size(); int p1 = bb.size();
canvases[k].restoreState(); canvases[k].restoreState();
if (p1 == canvasesPos[k * 2 + 1]) if (p1 == canvasesPos[k * 2 + 1])
bb.setSize(canvasesPos[k * 2]); bb.setSize(canvasesPos[k * 2]);
} }
} }
/** /**
* @since 3.0.0 protected is now public static * @since 3.0.0 protected is now public static
*/ */
public static float setColumn(ColumnText ct, float left, float bottom, float right, float top) { public static float setColumn(ColumnText ct, float left, float bottom, float right, float top) {
if (left > right) if (left > right)
right = left; right = left;
if (bottom > top) if (bottom > top)
top = bottom; top = bottom;
ct.setSimpleColumn(left, bottom, right, top); ct.setSimpleColumn(left, bottom, right, top);
return top; return top;
} }
/** /**
* Writes a number of cells (not necessarily all cells). * Writes a number of cells (not necessarily all cells).
@ -338,23 +334,23 @@ public class PdfPRow {
float tly = cell.getTop() + yPos - cell.getEffectivePaddingTop(); float tly = cell.getTop() + yPos - cell.getEffectivePaddingTop();
if (cell.getHeight() <= currentMaxHeight) { if (cell.getHeight() <= currentMaxHeight) {
switch (cell.getVerticalAlignment()) { switch (cell.getVerticalAlignment()) {
case Element.ALIGN_BOTTOM: case Element.ALIGN_BOTTOM:
tly = cell.getTop() + yPos - currentMaxHeight + cell.getHeight() tly = cell.getTop() + yPos - currentMaxHeight + cell.getHeight()
- cell.getEffectivePaddingTop(); - cell.getEffectivePaddingTop();
break; break;
case Element.ALIGN_MIDDLE: case Element.ALIGN_MIDDLE:
tly = cell.getTop() + yPos + (cell.getHeight() - currentMaxHeight) / 2 tly = cell.getTop() + yPos + (cell.getHeight() - currentMaxHeight) / 2
- cell.getEffectivePaddingTop(); - cell.getEffectivePaddingTop();
break; break;
default: default:
break; break;
} }
} }
if (img != null) { if (img != null) {
if (cell.getRotation() != 0) { if (cell.getRotation() != 0) {
img = Image.getInstance(img); img = Image.getInstance(img);
img.setRotation(img.getImageRotation() + (float)(cell.getRotation() * Math.PI / 180.0)); img.setRotation(img.getImageRotation() + (float)(cell.getRotation() * Math.PI / 180.0));
} }
boolean vf = false; boolean vf = false;
if (cell.getHeight() > currentMaxHeight) { if (cell.getHeight() > currentMaxHeight) {
img.scalePercent(100); img.scalePercent(100);
@ -368,20 +364,20 @@ public class PdfPRow {
+ cell.getEffectivePaddingLeft(); + cell.getEffectivePaddingLeft();
if (vf) { if (vf) {
switch (cell.getHorizontalAlignment()) { switch (cell.getHorizontalAlignment()) {
case Element.ALIGN_CENTER: case Element.ALIGN_CENTER:
left = xPos left = xPos
+ (cell.getLeft() + cell.getEffectivePaddingLeft() + (cell.getLeft() + cell.getEffectivePaddingLeft()
+ cell.getRight() + cell.getRight()
- cell.getEffectivePaddingRight() - img - cell.getEffectivePaddingRight() - img
.getScaledWidth()) / 2; .getScaledWidth()) / 2;
break; break;
case Element.ALIGN_RIGHT: case Element.ALIGN_RIGHT:
left = xPos + cell.getRight() left = xPos + cell.getRight()
- cell.getEffectivePaddingRight() - cell.getEffectivePaddingRight()
- img.getScaledWidth(); - img.getScaledWidth();
break; break;
default: default:
break; break;
} }
tly = cell.getTop() + yPos - cell.getEffectivePaddingTop(); tly = cell.getTop() + yPos - cell.getEffectivePaddingTop();
} }
@ -392,128 +388,128 @@ public class PdfPRow {
throw new ExceptionConverter(e); throw new ExceptionConverter(e);
} }
} else { } else {
// rotation sponsored by Connection GmbH // rotation sponsored by Connection GmbH
if (cell.getRotation() == 90 || cell.getRotation() == 270) { if (cell.getRotation() == 90 || cell.getRotation() == 270) {
float netWidth = currentMaxHeight - cell.getEffectivePaddingTop() - cell.getEffectivePaddingBottom(); float netWidth = currentMaxHeight - cell.getEffectivePaddingTop() - cell.getEffectivePaddingBottom();
float netHeight = cell.getWidth() - cell.getEffectivePaddingLeft() - cell.getEffectivePaddingRight(); float netHeight = cell.getWidth() - cell.getEffectivePaddingLeft() - cell.getEffectivePaddingRight();
ColumnText ct = ColumnText.duplicate(cell.getColumn()); ColumnText ct = ColumnText.duplicate(cell.getColumn());
ct.setCanvases(canvases); ct.setCanvases(canvases);
ct.setSimpleColumn(0, 0, netWidth + 0.001f, -netHeight); ct.setSimpleColumn(0, 0, netWidth + 0.001f, -netHeight);
try { try {
ct.go(true); ct.go(true);
} catch (DocumentException e) { } catch (DocumentException e) {
throw new ExceptionConverter(e); throw new ExceptionConverter(e);
} }
float calcHeight = -ct.getYLine(); float calcHeight = -ct.getYLine();
if (netWidth <= 0 || netHeight <= 0) if (netWidth <= 0 || netHeight <= 0)
calcHeight = 0; calcHeight = 0;
if (calcHeight > 0) { if (calcHeight > 0) {
if (cell.isUseDescender()) if (cell.isUseDescender())
calcHeight -= ct.getDescender(); calcHeight -= ct.getDescender();
ct = ColumnText.duplicate(cell.getColumn()); ct = ColumnText.duplicate(cell.getColumn());
ct.setCanvases(canvases); ct.setCanvases(canvases);
ct.setSimpleColumn(-0.003f, -0.001f, netWidth + 0.003f, calcHeight); ct.setSimpleColumn(-0.003f, -0.001f, netWidth + 0.003f, calcHeight);
float pivotX; float pivotX;
float pivotY; float pivotY;
if (cell.getRotation() == 90) { if (cell.getRotation() == 90) {
pivotY = cell.getTop() + yPos - currentMaxHeight + cell.getEffectivePaddingBottom(); pivotY = cell.getTop() + yPos - currentMaxHeight + cell.getEffectivePaddingBottom();
switch (cell.getVerticalAlignment()) { switch (cell.getVerticalAlignment()) {
case Element.ALIGN_BOTTOM: case Element.ALIGN_BOTTOM:
pivotX = cell.getLeft() + xPos + cell.getWidth() - cell.getEffectivePaddingRight(); pivotX = cell.getLeft() + xPos + cell.getWidth() - cell.getEffectivePaddingRight();
break; break;
case Element.ALIGN_MIDDLE: case Element.ALIGN_MIDDLE:
pivotX = cell.getLeft() + xPos + (cell.getWidth() + cell.getEffectivePaddingLeft() - cell.getEffectivePaddingRight() + calcHeight) / 2; pivotX = cell.getLeft() + xPos + (cell.getWidth() + cell.getEffectivePaddingLeft() - cell.getEffectivePaddingRight() + calcHeight) / 2;
break; break;
default: //top default: //top
pivotX = cell.getLeft() + xPos + cell.getEffectivePaddingLeft() + calcHeight; pivotX = cell.getLeft() + xPos + cell.getEffectivePaddingLeft() + calcHeight;
break; break;
} }
saveAndRotateCanvases(canvases, 0,1,-1,0,pivotX,pivotY); saveAndRotateCanvases(canvases, 0,1,-1,0,pivotX,pivotY);
} }
else { else {
pivotY = cell.getTop() + yPos - cell.getEffectivePaddingTop(); pivotY = cell.getTop() + yPos - cell.getEffectivePaddingTop();
switch (cell.getVerticalAlignment()) { switch (cell.getVerticalAlignment()) {
case Element.ALIGN_BOTTOM: case Element.ALIGN_BOTTOM:
pivotX = cell.getLeft() + xPos + cell.getEffectivePaddingLeft(); pivotX = cell.getLeft() + xPos + cell.getEffectivePaddingLeft();
break; break;
case Element.ALIGN_MIDDLE: case Element.ALIGN_MIDDLE:
pivotX = cell.getLeft() + xPos + (cell.getWidth() + cell.getEffectivePaddingLeft() - cell.getEffectivePaddingRight() - calcHeight) / 2; pivotX = cell.getLeft() + xPos + (cell.getWidth() + cell.getEffectivePaddingLeft() - cell.getEffectivePaddingRight() - calcHeight) / 2;
break; break;
default: //top default: //top
pivotX = cell.getLeft() + xPos + cell.getWidth() - cell.getEffectivePaddingRight() - calcHeight; pivotX = cell.getLeft() + xPos + cell.getWidth() - cell.getEffectivePaddingRight() - calcHeight;
break; break;
} }
saveAndRotateCanvases(canvases, 0,-1,1,0,pivotX,pivotY); saveAndRotateCanvases(canvases, 0,-1,1,0,pivotX,pivotY);
} }
try { try {
ct.go(); ct.go();
} catch (DocumentException e) { } catch (DocumentException e) {
throw new ExceptionConverter(e); throw new ExceptionConverter(e);
} finally { } finally {
restoreCanvases(canvases); restoreCanvases(canvases);
} }
} }
} }
else { else {
float fixedHeight = cell.getFixedHeight(); float fixedHeight = cell.getFixedHeight();
float rightLimit = cell.getRight() + xPos float rightLimit = cell.getRight() + xPos
- cell.getEffectivePaddingRight(); - cell.getEffectivePaddingRight();
float leftLimit = cell.getLeft() + xPos float leftLimit = cell.getLeft() + xPos
+ cell.getEffectivePaddingLeft(); + cell.getEffectivePaddingLeft();
if (cell.isNoWrap()) { if (cell.isNoWrap()) {
switch (cell.getHorizontalAlignment()) { switch (cell.getHorizontalAlignment()) {
case Element.ALIGN_CENTER: case Element.ALIGN_CENTER:
rightLimit += 10000; rightLimit += 10000;
leftLimit -= 10000; leftLimit -= 10000;
break; break;
case Element.ALIGN_RIGHT: case Element.ALIGN_RIGHT:
if (cell.getRotation() == 180) { if (cell.getRotation() == 180) {
rightLimit += RIGHT_LIMIT; rightLimit += RIGHT_LIMIT;
} }
else { else {
leftLimit -= RIGHT_LIMIT; leftLimit -= RIGHT_LIMIT;
} }
break; break;
default: default:
if (cell.getRotation() == 180) { if (cell.getRotation() == 180) {
leftLimit -= RIGHT_LIMIT; leftLimit -= RIGHT_LIMIT;
} }
else { else {
rightLimit += RIGHT_LIMIT; rightLimit += RIGHT_LIMIT;
} }
break; break;
} }
} }
ColumnText ct = ColumnText.duplicate(cell.getColumn()); ColumnText ct = ColumnText.duplicate(cell.getColumn());
ct.setCanvases(canvases); ct.setCanvases(canvases);
float bry = tly float bry = tly
- (currentMaxHeight - (currentMaxHeight
- cell.getEffectivePaddingTop() - cell.getEffectivePaddingBottom()); - cell.getEffectivePaddingTop() - cell.getEffectivePaddingBottom());
if (fixedHeight > 0) { if (fixedHeight > 0) {
if (cell.getHeight() > currentMaxHeight) { if (cell.getHeight() > currentMaxHeight) {
tly = cell.getTop() + yPos - cell.getEffectivePaddingTop(); tly = cell.getTop() + yPos - cell.getEffectivePaddingTop();
bry = cell.getTop() + yPos - currentMaxHeight + cell.getEffectivePaddingBottom(); bry = cell.getTop() + yPos - currentMaxHeight + cell.getEffectivePaddingBottom();
} }
} }
if ((tly > bry || ct.zeroHeightElement()) && leftLimit < rightLimit) { if ((tly > bry || ct.zeroHeightElement()) && leftLimit < rightLimit) {
ct.setSimpleColumn(leftLimit, bry - 0.001f, rightLimit, tly); ct.setSimpleColumn(leftLimit, bry - 0.001f, rightLimit, tly);
if (cell.getRotation() == 180) { if (cell.getRotation() == 180) {
float shx = leftLimit + rightLimit; float shx = leftLimit + rightLimit;
float shy = yPos + yPos - currentMaxHeight + cell.getEffectivePaddingBottom() - cell.getEffectivePaddingTop(); float shy = yPos + yPos - currentMaxHeight + cell.getEffectivePaddingBottom() - cell.getEffectivePaddingTop();
saveAndRotateCanvases(canvases, -1,0,0,-1,shx,shy); saveAndRotateCanvases(canvases, -1,0,0,-1,shx,shy);
} }
try { try {
ct.go(); ct.go();
} catch (DocumentException e) { } catch (DocumentException e) {
throw new ExceptionConverter(e); throw new ExceptionConverter(e);
} finally { } finally {
if (cell.getRotation() == 180) { if (cell.getRotation() == 180) {
restoreCanvases(canvases); restoreCanvases(canvases);
} }
} }
} }
} }
} }
PdfPCellEvent evt = cell.getCellEvent(); PdfPCellEvent evt = cell.getCellEvent();
if (evt != null) { if (evt != null) {
Rectangle rect = new Rectangle(cell.getLeft() + xPos, cell.getTop() Rectangle rect = new Rectangle(cell.getLeft() + xPos, cell.getTop()
@ -619,22 +615,22 @@ public class PdfPRow {
} }
} }
else { else {
float y; float y;
ColumnText ct = ColumnText.duplicate(cell.getColumn()); ColumnText ct = ColumnText.duplicate(cell.getColumn());
float left = cell.getLeft() + cell.getEffectivePaddingLeft(); float left = cell.getLeft() + cell.getEffectivePaddingLeft();
float bottom = cell.getTop() + cell.getEffectivePaddingBottom() - newHeight; float bottom = cell.getTop() + cell.getEffectivePaddingBottom() - newHeight;
float right = cell.getRight() - cell.getEffectivePaddingRight(); float right = cell.getRight() - cell.getEffectivePaddingRight();
float top = cell.getTop() - cell.getEffectivePaddingTop(); float top = cell.getTop() - cell.getEffectivePaddingTop();
switch (cell.getRotation()) { switch (cell.getRotation()) {
case 90: case 90:
case 270: case 270:
y = setColumn(ct, bottom, left, top, right); y = setColumn(ct, bottom, left, top, right);
break; break;
default: default:
y = setColumn(ct, left, bottom, cell.isNoWrap() ? RIGHT_LIMIT : right, top); y = setColumn(ct, left, bottom, cell.isNoWrap() ? RIGHT_LIMIT : right, top);
break; break;
} }
int status; int status;
try { try {
status = ct.go(true); status = ct.go(true);
} }
@ -648,7 +644,7 @@ public class PdfPRow {
} }
else if ((status & ColumnText.NO_MORE_TEXT) == 0) { else if ((status & ColumnText.NO_MORE_TEXT) == 0) {
newCell.setColumn(ct); newCell.setColumn(ct);
ct.setFilledWidth(0); ct.setFilledWidth(0);
} }
else else
newCell.setPhrase(null); newCell.setPhrase(null);

642
fine-itext-old/src/com/fr/third/com/lowagie/text/pdf/PdfPTable.java

File diff suppressed because it is too large Load Diff

54
fine-itext-old/src/com/fr/third/com/lowagie/text/pdf/TableProperties.java

@ -0,0 +1,54 @@
package com.fr.third.com.lowagie.text.pdf;
import com.fr.third.com.lowagie.text.pdf.BorderStyle;
/**
* 描述table的属性类
* 包括cellspacingcellpaddingborder等
*/
public class TableProperties {
private BorderStyle borderStyle = new BorderStyle();
private float cellspacing = 2.0f;
private float cellpadding = 1.0f;
private boolean collapse = false;
public BorderStyle getBorderStyle() {
return borderStyle;
}
public void setBorderStyle(BorderStyle borderStyle) {
this.borderStyle = borderStyle;
}
public float getCellspacing() {
return isCollapse() ? 0 : cellspacing;
}
public void setCellspacing(float cellspacing) {
this.cellspacing = cellspacing;
}
public float getCellpadding() {
return cellpadding;
}
public void setCellpadding(float cellpadding) {
this.cellpadding = cellpadding;
}
public boolean isCollapse() {
return collapse;
}
public void setCollapse(boolean collapse) {
this.collapse = collapse;
}
public String toHtmlString(){
StringBuffer sb = new StringBuffer();
sb.append("cellspacing").append("=").append(cellspacing).append(" ");
sb.append("cellpadding").append("=").append(cellpadding).append(" ");
sb.append("border").append("=").append(borderStyle.getBorderWidth()).append(" ");
return sb.toString();
}
}

3
fine-itext-old/src/com/fr/third/com/lowagie/text/rtf/text/RtfChunk.java

@ -59,6 +59,7 @@ import com.fr.third.com.lowagie.text.rtf.RtfElement;
import com.fr.third.com.lowagie.text.rtf.document.RtfDocument; import com.fr.third.com.lowagie.text.rtf.document.RtfDocument;
import com.fr.third.com.lowagie.text.rtf.style.RtfColor; import com.fr.third.com.lowagie.text.rtf.style.RtfColor;
import com.fr.third.com.lowagie.text.rtf.style.RtfFont; import com.fr.third.com.lowagie.text.rtf.style.RtfFont;
import com.fr.third.v2.lowagie.text.html.Markup;
/** /**
@ -126,7 +127,7 @@ public class RtfChunk extends RtfElement {
this.superSubScript = ((Float)chunk.getAttributes().get(Chunk.SUBSUPSCRIPT)).floatValue(); this.superSubScript = ((Float)chunk.getAttributes().get(Chunk.SUBSUPSCRIPT)).floatValue();
} }
if(chunk.getAttributes() != null && chunk.getAttributes().get(Chunk.BACKGROUND) != null) { if(chunk.getAttributes() != null && chunk.getAttributes().get(Chunk.BACKGROUND) != null) {
this.background = new RtfColor(this.document, (Color) ((Object[]) chunk.getAttributes().get(Chunk.BACKGROUND))[0]); this.background = new RtfColor(this.document, Markup.decodeColor((String)((Object[]) chunk.getAttributes().get(Chunk.BACKGROUND))[0]));
} }
font = new RtfFont(doc, chunk.getFont()); font = new RtfFont(doc, chunk.getFont());
content = chunk.getContent(); content = chunk.getContent();

Loading…
Cancel
Save