• <menu id="w2i4a"></menu>
  • logo Aspose.PDF for .NET開發(fā)者使用教程

    文檔首頁(yè)>>Aspose.PDF for .NET開發(fā)者使用教程>>PDF轉(zhuǎn)換控件Aspose.PDF for .Net使用教程(八):設(shè)置FreeTextAnnotation格式化和刪除單詞

    PDF轉(zhuǎn)換控件Aspose.PDF for .Net使用教程(八):設(shè)置FreeTextAnnotation格式化和刪除單詞


    Aspose.PDF for .NET是一種高PDF處理和解析API,用于在跨平臺(tái)應(yīng)用程序中執(zhí)行文檔管理和操作任務(wù)。API可以輕松用于生成、修改、轉(zhuǎn)換、渲染、保護(hù)和打印PDF文檔,而無(wú)需使用Adobe Acrobat。此外,API還提供PDF壓縮選項(xiàng),表格創(chuàng)建和操作,圖形和圖像功能,廣泛的超鏈接功能,印章和水印任務(wù),擴(kuò)展的安全控制和自定義字體處理。

    【下載體驗(yàn)Aspose.PDF for .NET最新版】

    在接下來(lái)的系列教程中,將為開發(fā)者帶來(lái)Aspose.PDF for .NET的一系列使用教程,例如進(jìn)行文檔間的轉(zhuǎn)換,如何標(biāo)記PDF文件,如何使用表單和圖表等等。

    第二章:使用注釋

    ▲第四節(jié):設(shè)置FreeTextAnnotation格式化和刪除單詞

    設(shè)置FreeTextAnnotation的格式


    注釋包含在Page對(duì)象的AnnotationCollection集合中。 將FreeTextAnnotation添加到PDF文檔時(shí),可以使用DefaultAppearance類指定格式信息,如字體,大小,顏色等。 也可以使用TextStyle屬性指定格式信息。

    TextStyle類支持使用默認(rèn)樣式條目。 此類允許您設(shè)置顏色,字體大小和字體名稱:

    • FontName屬性獲取或設(shè)置字體名稱(字符串)。
    • FontSize屬性獲取并設(shè)置默認(rèn)文本大小(double)。
    • System.Drawing.Color屬性獲取并設(shè)置文本顏色(顏色)。
    • TextAlignment屬性獲取并設(shè)置注釋的文本對(duì)齊方式(對(duì)齊方式)。

    以下代碼段顯示了如何添加具有特定文本格式的FreeTextAnnotation:

    //文檔目錄的路徑。
    string dataDir = RunExamples.GetDataDir_AsposePdf_Annotations();
                
    //打開文檔
    Document pdfDocument = new Document(dataDir + "SetFreeTextAnnotationFormatting.pdf");
    
    //實(shí)例化DefaultAppearance對(duì)象
    DefaultAppearance default_appearance = new DefaultAppearance("Arial", 28, System.Drawing.Color.Red);
    // 創(chuàng)建注釋
    FreeTextAnnotation freetext = new FreeTextAnnotation(pdfDocument.Pages[1], new Aspose.Pdf.Rectangle(200, 400, 400, 600), default_appearance);
    //指定注釋的內(nèi)容
    freetext.Contents = "Free Text";
    //將注釋添加到頁(yè)面的注釋集合中
    pdfDocument.Pages[1].Annotations.Add(freetext);
    dataDir = dataDir + "SetFreeTextAnnotationFormatting_out.pdf";
    //保存更新后的文檔
    pdfDocument.Save(dataDir);


    使用刪除注釋將單詞刪除


    spose.PDF for .NET允許您在PDF文檔中添加,刪除和更新注釋。 其中一個(gè)類允許您刪除注釋。 當(dāng)您想要?jiǎng)h除文檔中的一個(gè)或多個(gè)文本片段時(shí),這非常有用。 注釋保存在Page對(duì)象的AnnotationCollection集合中。 名為StrikeOutAnnotation的類可用于向PDF文檔添加刪除注釋。

    要?jiǎng)h除某個(gè)TextFragment:

    1. 在PDF文件中搜索TextFragment。
    2. 獲取TextFragment對(duì)象的坐標(biāo)。
    3. 使用坐標(biāo)實(shí)例化StrikeOutAnnotation對(duì)象。

    以下代碼段顯示了如何搜索特定的TextFragment并向該對(duì)象添加StrikeOutAnnotation:

    //文檔目錄的路徑。
    string dataDir = RunExamples.GetDataDir_AsposePdf_Annotations();
    
    //打開文檔
    Document document = new Document(dataDir + "input.pdf");
    
    //創(chuàng)建TextFragment Absorber實(shí)例以搜索特定文本片段
    Aspose.Pdf.Text.TextFragmentAbsorber textFragmentAbsorber = new Aspose.Pdf.Text.TextFragmentAbsorber("Estoque");
    //遍歷PDF文檔頁(yè)面
    for (int i = 1; i <= document.Pages.Count; i++)
    {
        //獲取PDF文檔的第一頁(yè)
        Page page = document.Pages[1];
        page.Accept(textFragmentAbsorber);
    }
    
    // 創(chuàng)建吸收文本的集合
    Aspose.Pdf.Text.TextFragmentCollection textFragmentCollection = textFragmentAbsorber.TextFragments;
    
    //迭代上面的集合
    for (int j = 1; j <= textFragmentCollection.Count; j++)
    {
        Aspose.Pdf.Text.TextFragment textFragment = textFragmentCollection[j];
    
        //獲取TextFragment對(duì)象的矩形尺寸	
        Aspose.Pdf.Rectangle rect = new Aspose.Pdf.Rectangle(
                    (float)textFragment.Position.XIndent,
                    (float)textFragment.Position.YIndent,
                    (float)textFragment.Position.XIndent +
                    (float)textFragment.Rectangle.Width,
                    (float)textFragment.Position.YIndent +
                    (float)textFragment.Rectangle.Height);
    
        // 實(shí)例化StrikeOut Annotation實(shí)例
        StrikeOutAnnotation strikeOut = new StrikeOutAnnotation(textFragment.Page, rect);
        // 為注釋設(shè)置不透明度
        strikeOut.Opacity = .80f;
        //設(shè)置注釋實(shí)例的邊框
        strikeOut.Border = new Border(strikeOut);
        //設(shè)置注釋的顏色
        strikeOut.Color = Aspose.Pdf.Color.Red;
        //將注釋添加到TextFragment的注釋集合中
        textFragment.Page.Annotations.Add(strikeOut);
    }
    dataDir = dataDir + "StrikeOutWords_out.pdf";
    document.Save(dataDir);



    *想要購(gòu)買Aspose.PDF for .NET正版授權(quán)的朋友可以聯(lián)系在線客服了解詳情哦~

    歡迎加入ASPOSE技術(shù)交流QQ群,各類資源及時(shí)分享,技術(shù)問(wèn)題交流討論!(掃描下方二維碼加入群聊)

    1560231367164.png


    掃碼咨詢


    添加微信 立即咨詢

    電話咨詢

    客服熱線
    023-68661681

    TOP
    三级成人熟女影院,欧美午夜成人精品视频,亚洲国产成人乱色在线观看,色中色成人论坛 (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })();