文本从richTextBox到.pdf文件c#:希腊字符不出现在.pdf文件



我想把一个richTextBox的文本从Visual Studio (c#)传递到。pdf文件,使用iTextSharp。我的代码确实创建了.pdf文件,并在文件上传递文本。但是,包含的希腊单词-字符不会出现在文件的文本中(只有英文字符,数字和符号)。破折号等。我知道我需要以某种方式需要将默认基本字体更改为其他字体,以便希腊字母也可以显示,并且尝试了我遇到的许多建议,但仍然无法使其工作。下面是我的代码:

SaveFileDialog sfd = new SaveFileDialog();
private void button1_Click(object sender, EventArgs e)
{
sfd.Title = "Save As PDF";
sfd.Filter = "(*.pdf)|*.pdf";
sfd.InitialDirectory = @"C:";
if (sfd.ShowDialog() == DialogResult.OK)
{
iTextSharp.text.Document doc = new iTextSharp.text.Document();
PdfWriter.GetInstance(doc, new FileStream(sfd.FileName, FileMode.Create));
doc.Open();
doc.Add(new iTextSharp.text.Paragraph(richTextBox1.Text));
doc.Close();
}
}

首先,iTextSharp已被弃用。在NuGet包管理器中,你可以看到它们特别告诉你使用itext7。

在itext7中,您必须制作并使用支持希腊字符集的字体。

这似乎对我有用:

using iText.Kernel.Font;
using iText.Kernel.Pdf;
using iText.Layout;
using iText.Layout.Element;
private void Test()
{
string fileName = Path.GetDirectoryName(Application.ExecutablePath) + \test.pdf";
PdfWriter pdfWriter = new PdfWriter(fileName);
PdfDocument pdf = new PdfDocument(pdfWriter);
Document doc = new Document(pdf);
var font = PdfFontFactory.CreateFont("C:\Windows\Fonts\arial.ttf", "Identity-H", PdfFontFactory.EmbeddingStrategy.FORCE_EMBEDDED);
Paragraph p = new Paragraph("Α α, Β β, Γ γ, Δ δ, Ε ε, Ζ ζ, Η η, Θ θ, Ι ι, Κ κ, Λ λ, Μ");
p.SetFont(font);
doc.Add(p);
doc.Close();
}

相关内容

  • 没有找到相关文章

最新更新