我仍然是C#的初学者,我想知道是否可以选择使用iTextSharp在PDF中编写斯拉夫字母č,ć,š,ž。我正在阅读有关它的其他帖子,但我不能将他们的解决方案应用于我的问题,也许这对我来说是一个复杂的初学者。这是我的代码:
SaveFileDialog pdfFile = new SaveFileDialog();
pdfFile.Filter = "PDF|*.pdf";
pdfFile.Title = "Spremi PDF";
pdfFile.FileName = "Ispit";
if (pdfFile.ShowDialog() == System.Windows.Forms.DialogResult.OK)
{
Document document = new Document(iTextSharp.text.PageSize.LETTER, 25, 25, 35, 35);
PdfWriter writer = PdfWriter.GetInstance(document, new FileStream(pdfFile.FileName, FileMode.Create));
document.Open();
foreach (List<string> question in questions)
{
document.NewPage();
foreach (string field in question)
{
document.Add(new Paragraph(field));
}
}
document.Close();
}
这段代码可能很简单,也许还有很多更好的方法可以做到这一点,但这是我在C#中的第一个代码。
答案 0 :(得分:1)
我已经解决了我的问题。这是帮助我的代码:
BaseFont bf = BaseFont.CreateFont(BaseFont.HELVETICA, BaseFont.CP1250, false);
Font titleFont = new Font(bf,20);
Font infoFont = new Font(bf,16);
谢谢大家