通过 iTextSharp 将从右到左的语言文本添加到现有 pdf 文件的自定义位置

发布于 2024-11-03 03:38:30 字数 1612 浏览 1 评论 0原文

你好 我想使用 iTextSharp 版本 5.0.0.0 库将波斯语(从右到左的语言)文本添加到现有 pdf 文件的顶部。

我使用此代码:

public static void InsertText(string SourceFileName, string TargetFileName, string Text, int x, int y)
{
    PdfReader reader = new PdfReader(SourceFileName);            
    Document document = new Document(PageSize.A4, 0, 0, 0, 0);  // open the writer 

    FileStream fs = new FileStream(TargetFileName, FileMode.Create, FileAccess.Write);
    PdfWriter writer = PdfWriter.GetInstance(document, fs);
    document.Open();


    PdfContentByte cb = writer.DirectContent;  // select the font properties
    FontFactory.RegisterDirectories();
    Font fTahoma = FontFactory.GetFont("Tahoma", BaseFont.IDENTITY_H, 10, Font.NORMAL, BaseColor.RED);
    writer.SetMargins(0, 0, 0, 0);

    ColumnText ct = new ColumnText(writer.DirectContent);

    ct.RunDirection = PdfWriter.RUN_DIRECTION_RTL;            
    Phrase p = new Phrase(Text, fTahoma);
    ct.SetText(p);

    ct.SetSimpleColumn(x, y, x + 350, y + 20);            
    ct.Go();           

    for (int i = 1; i <= reader.NumberOfPages; i++)
    {
        PdfImportedPage page = writer.GetImportedPage(reader, i);

        cb.AddTemplate(page, 0, 0);  // close the streams and voilá the file should be changed :)                
        document.NewPage();
    }

    document.Close();
    fs.Close();
    writer.Close();
}

我调用 InsertText("Source.pdf", "Target.pdf", "Persian message", 10, 800); 我的 source.pdf 页面大小是:高度:842,宽度:595

不幸的是,我得到的 target.pdf 只包含我的消息的一半!垂直的另一半是隐藏的! 现在的问题是:如何将从右到左的语言文本添加到现有 pdf 文件的顶部?

Hi
I want to add a text in persian language (a right to left language) to the top of an existing pdf file, using iTextSharp Version 5.0.0.0 library.

I use this code:

public static void InsertText(string SourceFileName, string TargetFileName, string Text, int x, int y)
{
    PdfReader reader = new PdfReader(SourceFileName);            
    Document document = new Document(PageSize.A4, 0, 0, 0, 0);  // open the writer 

    FileStream fs = new FileStream(TargetFileName, FileMode.Create, FileAccess.Write);
    PdfWriter writer = PdfWriter.GetInstance(document, fs);
    document.Open();


    PdfContentByte cb = writer.DirectContent;  // select the font properties
    FontFactory.RegisterDirectories();
    Font fTahoma = FontFactory.GetFont("Tahoma", BaseFont.IDENTITY_H, 10, Font.NORMAL, BaseColor.RED);
    writer.SetMargins(0, 0, 0, 0);

    ColumnText ct = new ColumnText(writer.DirectContent);

    ct.RunDirection = PdfWriter.RUN_DIRECTION_RTL;            
    Phrase p = new Phrase(Text, fTahoma);
    ct.SetText(p);

    ct.SetSimpleColumn(x, y, x + 350, y + 20);            
    ct.Go();           

    for (int i = 1; i <= reader.NumberOfPages; i++)
    {
        PdfImportedPage page = writer.GetImportedPage(reader, i);

        cb.AddTemplate(page, 0, 0);  // close the streams and voilá the file should be changed :)                
        document.NewPage();
    }

    document.Close();
    fs.Close();
    writer.Close();
}

I call InsertText("Source.pdf", "Target.pdf", "Persian message", 10, 800);
My source.pdf page size is: height: 842, width: 595

Unfortunately i get target.pdf with only half of my message! The other vertical half is hidden!
Now the question is: How i can add a right to left language text to the top of an existing pdf file?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

依 靠 2024-11-10 03:38:30

问题:导入的页面可能会覆盖文本。

解决方案:添加 PdfImportedPage,然后添加文本。

Problem: The imported page is probably overwriting the text.

Solution: Add your PdfImportedPage, THEN add the text.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文