我正在使用此代码获取AcroField的字体大小。
但名为“名字姓氏”的AcroField的字体大小为0(虽然它的实际字体是32.3)。
其他字段的字体大小正在准确。请帮助我获得准确的字体大小。
我的代码是......
final AcroFields.Item item = acroFields.getFieldItem(fieldName);
ArrayList list =null;
if(item!=null)
list = item.merged;
if (list != null)
{
for (final Iterator it1 = list.iterator(); it1.hasNext();)
{
final PdfDictionary itemDict = (PdfDictionary) it1.next();
final PdfObject da = itemDict.get(PdfName.DA);
System.out.println(da.toString()); //font size is printing out to be 0;
}
}
新守则
import java.util.ArrayList;
import java.util.Iterator;
import java.util.Map;
import java.util.Set;
import com.lowagie.text.pdf.AcroFields;
import com.lowagie.text.pdf.PRStream;
import com.lowagie.text.pdf.PdfDictionary;
import com.lowagie.text.pdf.PdfEncodings;
import com.lowagie.text.pdf.PdfName;
import com.lowagie.text.pdf.PdfReader;
import com.lowagie.text.pdf.PdfStamper;
import com.lowagie.text.pdf.PdfStream;
public class MyTest {
public static void main(String[] args) {
String pdfName = "Crunch-Business_card_NRW_edits.pdf";
PdfStamper stamper = null;
FileOutputStream fout = null;
try{
PdfReader reader = new PdfReader(pdfName);
fout = new FileOutputStream("output.pdf");
stamper = new PdfStamper(reader, fout);
AcroFields acroFields = stamper.getAcroFields();
Map fieldMap = acroFields.getFields();
Set keys = fieldMap.keySet();
for (Iterator it = keys.iterator(); it.hasNext();)
{
String fieldName = (String) it.next();
acroFields.setField(fieldName,acroFields.getField(fieldName));
final AcroFields.Item item = acroFields.getFieldItem(fieldName);
final ArrayList list = item.merged;
if (list != null) {
for (final Iterator it1 = list.iterator(); it1.hasNext();) {
final PdfDictionary itemDict = (PdfDictionary) it1.next();
PdfDictionary appearanceDict = itemDict.getAsDict(PdfName.AP);
PdfStream normalAppearance = appearanceDict.getAsStream(PdfName.N);
System.out.println("normalAppearance======"+normalAppearance);// normalAppearance is coming null.
byte[] streamBytes = PdfReader.getStreamBytes((PRStream) normalAppearance);
System.out.println(PdfEncodings.convertToString(streamBytes, null));
}
}
}
stamper.setFreeTextFlattening(false);
stamper.setFormFlattening(false);
stamper.close();
}
catch(Exception e){
e.printStackTrace();
}
}
}
PDF的链接是http://www.mediafire.com/view/?tpjql3ipn3xqpbo。
先谢谢。
答案 0 :(得分:0)
本质上:
0表示'自动调整大小':您必须计算适合的大小。
详细说明:
让我们看一下文档中的字段定义:
52 0 obj
<<
/Ff 41943042
/F 4
/Type/Annot
/RV(<?xml version="1.0"?>
<body xfa:APIVersion="Acroform:2.7.0.0" xfa:spec="2.1"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:xfa="http://www.xfa.org/schema/xfa-data/1.0/">
<p dir="ltr"
style="margin-top:0pt;margin-bottom:0pt;text-valign:middle;
font-family:'Alternate Gothic LT';font-size:30pt;
color:#ffffff">first name last name</p>
</body>)
/Subtype/Widget
/DV(first name last name)
/T(name)
/V(first name last name)
/DS(font: 'Alternate Gothic LT',sans-serif 12.0pt; text-align:left; color:#FFFFFF )
/AP<</N 7 0 R>>
/P 21 0 R
/MK<<>>
/FT/Tx
/Rect[36.8297 87.7383 250.89 129.353]
/DA(/AlternateGothicLT-No3 0 Tf 1 1 1 rg)
>>
endobj
在7 0的外观流的内容中:
q Q /Tx
BMC
q
0 0 214.06 41.61 re W n
q
BT
1 0 0 1 2 7.14 Tm
/AlternateGothicLT-No3 32.31 Tf
1 1 1 rg
(first name last name)Tj
0 g
ET
Q
Q
EMC
就像您通过iText阅读一样, DA (默认外观)字符串将字体设置为0。
根据PDF规范ISO 32000-1,第435页,这意味着:
默认外观字符串(DA)包含建立图形状态参数(如文本大小和颜色)所需的任何图形状态或文本状态运算符,用于显示字段的变量文本。只有文本对象中允许的运算符才会出现在该字符串中(参见图9)。该字符串至少应包含一个Tf(文本字体)运算符及其两个操作数,字体和大小。指定的字体值应与默认资源字典的Font条目中的资源名称匹配(从交互式表单字典的DR条目引用;请参阅表218)。大小为零意味着字体应自动调整大小:其大小应根据注释矩形的高度计算。
因此,必须计算尺寸以填充可用空间,但不能更多。
在外观流中,您会看到外观的最后一个创建者被认为是32.31 pt来完成这项工作。
修改强>
您可以像这样提取正常外观流的字节:
PdfDictionary appearanceDict = itemDict.getAsDict(PdfName.AP);
PdfStream normalAppearance = appearanceDict.getAsStream(PdfName.N);
byte[] streamBytes = PdfReader.getStreamBytes((PRStream) normalAppearance);
System.out.println(PdfEncodings.convertToString(streamBytes, null));
答案 1 :(得分:0)
我尝试过@mkl提供的解决方案并得到了预期的结果。 这是@mkl解释的解决方案。
PdfDictionary appearanceDict = itemDict.getAsDict(PdfName.AP);
PdfStream normalAppearance = appearanceDict.getAsStream(PdfName.N);
byte[] streamBytes = PdfReader.getStreamBytes((PRStream) normalAppearance);
System.out.println(PdfEncodings.convertToString(streamBytes, null));