|
|
|
@ -50,6 +50,7 @@
|
|
|
|
|
package com.fr.third.v2.lowagie.text.pdf; |
|
|
|
|
|
|
|
|
|
import java.awt.Color; |
|
|
|
|
import java.awt.FontMetrics; |
|
|
|
|
import java.util.HashMap; |
|
|
|
|
import java.util.Iterator; |
|
|
|
|
import java.util.Map; |
|
|
|
@ -59,6 +60,7 @@ import com.fr.third.v2.lowagie.text.Utilities;
|
|
|
|
|
import com.fr.third.v2.lowagie.text.Chunk; |
|
|
|
|
import com.fr.third.v2.lowagie.text.Font; |
|
|
|
|
import com.fr.third.v2.lowagie.text.Image; |
|
|
|
|
import sun.font.FontDesignMetrics; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* A <CODE>PdfChunk</CODE> is the PDF translation of a <CODE>Chunk</CODE>. |
|
|
|
@ -124,9 +126,15 @@ public class PdfChunk {
|
|
|
|
|
|
|
|
|
|
/** The font for this <CODE>PdfChunk</CODE>. */ |
|
|
|
|
protected PdfFont font; |
|
|
|
|
|
|
|
|
|
protected BaseFont baseFont; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public PdfFont getFont() { |
|
|
|
|
return font; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setFont(PdfFont font) { |
|
|
|
|
this.font = font; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
protected SplitCharacter splitCharacter; |
|
|
|
|
/** |
|
|
|
|
* Metric attributes. |
|
|
|
@ -174,7 +182,6 @@ public class PdfChunk {
|
|
|
|
|
this.font = other.font; |
|
|
|
|
this.attributes = other.attributes; |
|
|
|
|
this.noStroke = other.noStroke; |
|
|
|
|
this.baseFont = other.baseFont; |
|
|
|
|
Object obj[] = (Object[])attributes.get(Chunk.IMAGE); |
|
|
|
|
if (obj == null) |
|
|
|
|
image = null; |
|
|
|
@ -184,7 +191,6 @@ public class PdfChunk {
|
|
|
|
|
offsetY = ((Float)obj[2]).floatValue(); |
|
|
|
|
changeLeading = ((Boolean)obj[3]).booleanValue(); |
|
|
|
|
} |
|
|
|
|
encoding = font.getFont().getEncoding(); |
|
|
|
|
splitCharacter = (SplitCharacter)noStroke.get(Chunk.SPLITCHARACTER); |
|
|
|
|
if (splitCharacter == null) |
|
|
|
|
splitCharacter = DefaultSplitCharacter.DEFAULT; |
|
|
|
@ -206,28 +212,20 @@ public class PdfChunk {
|
|
|
|
|
float size = f.getSize(); |
|
|
|
|
if (size == Font.UNDEFINED) |
|
|
|
|
size = 12; |
|
|
|
|
baseFont = f.getBaseFont(); |
|
|
|
|
int style = f.getStyle(); |
|
|
|
|
if (style == Font.UNDEFINED) { |
|
|
|
|
style = Font.NORMAL; |
|
|
|
|
} |
|
|
|
|
if (baseFont == null) { |
|
|
|
|
// translation of the font-family to a PDF font-family
|
|
|
|
|
baseFont = f.getCalculatedBaseFont(false); |
|
|
|
|
} |
|
|
|
|
else { |
|
|
|
|
// bold simulation
|
|
|
|
|
if ((style & Font.BOLD) != 0) |
|
|
|
|
attributes.put(Chunk.TEXTRENDERMODE, new Object[]{new Integer(PdfContentByte.TEXT_RENDER_MODE_FILL_STROKE), new Float(size / 30f), null}); |
|
|
|
|
// italic simulation
|
|
|
|
|
if ((style & Font.ITALIC) != 0) |
|
|
|
|
attributes.put(Chunk.SKEW, new float[]{0, ITALIC_ANGLE}); |
|
|
|
|
} |
|
|
|
|
font = new PdfFont(baseFont, size); |
|
|
|
|
float fontSize = font.size(); |
|
|
|
|
float ascender = font.getFont().getFontDescriptor(BaseFont.ASCENT, fontSize); |
|
|
|
|
float descender = font.getFont().getFontDescriptor(BaseFont.DESCENT, fontSize); |
|
|
|
|
height = ascender - descender; |
|
|
|
|
|
|
|
|
|
// bold simulation
|
|
|
|
|
if ((style & Font.BOLD) != 0) |
|
|
|
|
attributes.put(Chunk.TEXTRENDERMODE, new Object[]{new Integer(PdfContentByte.TEXT_RENDER_MODE_FILL_STROKE), new Float(size / 30f), null}); |
|
|
|
|
// italic simulation
|
|
|
|
|
if ((style & Font.ITALIC) != 0) |
|
|
|
|
attributes.put(Chunk.SKEW, new float[]{0, ITALIC_ANGLE}); |
|
|
|
|
FontMetrics metrics = FontDesignMetrics.getMetrics(new java.awt.Font(f.getFontName(), f.getStyle(), (int)f.getSize())); |
|
|
|
|
font = new PdfFont(f, f.getSize()); |
|
|
|
|
height = metrics.getHeight(); |
|
|
|
|
// other style possibilities
|
|
|
|
|
HashMap attr = chunk.getAttributes(); |
|
|
|
|
if (attr != null) { |
|
|
|
@ -259,7 +257,7 @@ public class PdfChunk {
|
|
|
|
|
attributes.put(Chunk.ACTION, action); |
|
|
|
|
// the color can't be stored in a PdfFont
|
|
|
|
|
noStroke.put(Chunk.COLOR, f.getColor()); |
|
|
|
|
noStroke.put(Chunk.ENCODING, font.getFont().getEncoding()); |
|
|
|
|
// noStroke.put(Chunk.ENCODING, font.getFont().getEncoding());
|
|
|
|
|
Object obj[] = (Object[])attributes.get(Chunk.IMAGE); |
|
|
|
|
if (obj == null) { |
|
|
|
|
image = null; |
|
|
|
@ -267,6 +265,7 @@ public class PdfChunk {
|
|
|
|
|
else { |
|
|
|
|
attributes.remove(Chunk.HSCALE); // images are scaled in other ways
|
|
|
|
|
image = (Image)obj[0]; |
|
|
|
|
this.height = image.getHeight(); |
|
|
|
|
offsetX = ((Float)obj[1]).floatValue(); |
|
|
|
|
offsetY = ((Float)obj[2]).floatValue(); |
|
|
|
|
changeLeading = ((Boolean)obj[3]).booleanValue(); |
|
|
|
@ -275,7 +274,6 @@ public class PdfChunk {
|
|
|
|
|
Float hs = (Float)attributes.get(Chunk.HSCALE); |
|
|
|
|
if (hs != null) |
|
|
|
|
font.setHorizontalScaling(hs.floatValue()); |
|
|
|
|
encoding = font.getFont().getEncoding(); |
|
|
|
|
splitCharacter = (SplitCharacter)noStroke.get(Chunk.SPLITCHARACTER); |
|
|
|
|
if (splitCharacter == null) |
|
|
|
|
splitCharacter = DefaultSplitCharacter.DEFAULT; |
|
|
|
@ -290,7 +288,7 @@ public class PdfChunk {
|
|
|
|
|
* @return the Unicode equivalent |
|
|
|
|
*/ |
|
|
|
|
public int getUnicodeEquivalent(int c) { |
|
|
|
|
return baseFont.getUnicodeEquivalent(c); |
|
|
|
|
return 0; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
protected int getWord(String text, int start) { |
|
|
|
@ -338,38 +336,7 @@ public class PdfChunk {
|
|
|
|
|
int length = value.length(); |
|
|
|
|
char valueArray[] = value.toCharArray(); |
|
|
|
|
char character = 0; |
|
|
|
|
BaseFont ft = font.getFont(); |
|
|
|
|
boolean surrogate = false; |
|
|
|
|
if (ft.getFontType() == BaseFont.FONT_TYPE_CJK && ft.getUnicodeEquivalent(' ') != ' ') { |
|
|
|
|
while (currentPosition < length) { |
|
|
|
|
// the width of every character is added to the currentWidth
|
|
|
|
|
char cidChar = valueArray[currentPosition]; |
|
|
|
|
character = (char)ft.getUnicodeEquivalent(cidChar); |
|
|
|
|
// if a newLine or carriageReturn is encountered
|
|
|
|
|
if (character == '\n') { |
|
|
|
|
newlineSplit = true; |
|
|
|
|
String returnValue = value.substring(currentPosition + 1); |
|
|
|
|
value = value.substring(0, currentPosition); |
|
|
|
|
if (value.length() < 1) { |
|
|
|
|
value = "\u0001"; |
|
|
|
|
} |
|
|
|
|
PdfChunk pc = new PdfChunk(returnValue, this); |
|
|
|
|
return pc; |
|
|
|
|
} |
|
|
|
|
currentWidth += font.width(cidChar); |
|
|
|
|
if (character == ' ') { |
|
|
|
|
lastSpace = currentPosition + 1; |
|
|
|
|
lastSpaceWidth = currentWidth; |
|
|
|
|
} |
|
|
|
|
if (currentWidth > width) |
|
|
|
|
break; |
|
|
|
|
// if a split-character is encountered, the splitPosition is altered
|
|
|
|
|
if (splitCharacter.isSplitCharacter(0, currentPosition, length, valueArray, thisChunk)) |
|
|
|
|
splitPosition = currentPosition + 1; |
|
|
|
|
currentPosition++; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
else { |
|
|
|
|
while (currentPosition < length) { |
|
|
|
|
// the width of every character is added to the currentWidth
|
|
|
|
|
character = valueArray[currentPosition]; |
|
|
|
@ -381,9 +348,6 @@ public class PdfChunk {
|
|
|
|
|
inc = 2; |
|
|
|
|
String returnValue = value.substring(currentPosition + inc); |
|
|
|
|
value = value.substring(0, currentPosition); |
|
|
|
|
if (value.length() < 1) { |
|
|
|
|
value = " "; |
|
|
|
|
} |
|
|
|
|
PdfChunk pc = new PdfChunk(returnValue, this); |
|
|
|
|
return pc; |
|
|
|
|
} |
|
|
|
@ -405,8 +369,7 @@ public class PdfChunk {
|
|
|
|
|
splitPosition = currentPosition + 1; |
|
|
|
|
currentPosition++; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// if all the characters fit in the total width, null is returned (there is no overflow)
|
|
|
|
|
if (currentPosition == length) { |
|
|
|
|
return null; |
|
|
|
@ -710,7 +673,7 @@ public class PdfChunk {
|
|
|
|
|
* @return <CODE>true</CODE> if an image is present |
|
|
|
|
*/ |
|
|
|
|
|
|
|
|
|
boolean isImage() |
|
|
|
|
public boolean isImage() |
|
|
|
|
{ |
|
|
|
|
return image != null; |
|
|
|
|
} |
|
|
|
@ -720,7 +683,7 @@ public class PdfChunk {
|
|
|
|
|
* @return the image or <CODE>null</CODE> |
|
|
|
|
*/ |
|
|
|
|
|
|
|
|
|
Image getImage() |
|
|
|
|
public Image getImage() |
|
|
|
|
{ |
|
|
|
|
return image; |
|
|
|
|
} |
|
|
|
|