我希望在PDF文件中提取文本的所有不同字体名称。我正在使用iTextSharp DLL,下面给出的是我的代码。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using iTextSharp.text.pdf.parser;
using iTextSharp.text.pdf;
namespace GetFontName
{
class Program
{
static void Main(string[] args)
{
PdfReader reader = new PdfReader("C:/Users/agnihotri/Downloads/Test.pdf");
HashSet<String> names = new HashSet<string>();
PdfDictionary resources;
for (int p = 1; p <= reader.NumberOfPages; p++)
{
PdfDictionary dic = reader.GetPageN(p);
resources = dic.GetAsDict(PdfName.RESOURCES);
if (resources != null)
{
//gets fonts dictionary
PdfDictionary fonts = resources.GetAsDict(PdfName.FONT);
if (fonts != null)
{
PdfDictionary font;
foreach (PdfName key in fonts.Keys)
{
font = fonts.GetAsDict(key);
string name = font.GetAsName(iTextSharp.text.pdf.PdfName.BASEFONT).ToString();
//check for prefix subsetted font
if (name.Length > 8 && name.ToCharArray()[7] == '+')
{
name = String.Format("%s subset (%s)", name.Substring(8), name.Substring(1, 7));
}
else
{
//get type of fully embedded fonts
name = name.Substring(1);
PdfDictionary desc = font.GetAsDict(PdfName.FONTDESCRIPTOR);
if (desc == null)
name += "no font descriptor";
else if (desc.Get(PdfName.FONTFILE) != null)
name += "(Type1) embedded";
else if (desc.Get(PdfName.FONTFILE2) != null)
name += "(TrueType) embedded ";
else if (desc.Get(PdfName.FONTFILE3) != null)
name += name;//("+font.GetASName(PdfName.SUBTYPE).ToString().SubSTring(1)+")embedded';
}
names.Add(name);
}
}
}
}
var collections = from name in names
select name;
foreach (string fname in collections)
{
Console.WriteLine(fname);
}
Console.Read();
}
}
}
我得到的输出是“Glyphless Font”没有字体描述符“对于每个pdf文件作为输入。输入文件的链接如下:
https://drive.google.com/open?id=0B6tD8gqVZtLiM3NYMmVVVllNcWc
答案 0 :(得分:2)
我已经在Adobe Acrobat中打开了您的PDF,我查看了字体面板。这就是我所看到的:
你有一个嵌入式的LiberationMono子集,这意味着字体的名称将作为ABCDEF + LiberationMono存储在文件中(其中ABCDEF是一系列6个随机但唯一的字符)因为字体是子集。见What are the extra characters in the font name of my PDF?
现在让我们来看看在iText RUPS中打开的同一个文件:
我们找到了/Font
对象,它有一个/FontDescriptor
。在/FontDescriptor
中,我们找到了我们预期格式的/FontName
:BAAAAA+LiberationMono
。
现在您知道在哪里查找该名称,您可以调整代码。
答案 1 :(得分:2)
以最少的更改运行代码我得到输出
%s subset (%s)
实际上%s
看起来像Java格式字符串,而不是.Net格式字符串。使用更多的.Net&#39; ish格式字符串{0} subset ({1})
我得到了
LiberationMono subset (BAAAAA+)
我建议你在文件路径中使用反斜杠和@"..."
字符串形式而不是斜杠,例如像这样
PdfReader reader = new PdfReader(@"C:\Users\agnihotri\Downloads\Test.pdf");
并仔细检查文件名和路径---在您提供的所有文件都命名为Hello_World.pdf
之后。