• <menu id="w2i4a"></menu>
  • logo Spire.PDF教程-文檔操作
    文檔首頁>>Spire.PDF教程-文檔操作>>【教程】Spire.PDF 教程:使用C#從PDF中的特定矩形區(qū)域中提取文本

    【教程】Spire.PDF 教程:使用C#從PDF中的特定矩形區(qū)域中提取文本


    使用Spire.PDF,程序員可以從PDF文檔中的特定矩形區(qū)域提取文本,本文演示如何使用Spire.PDF和C#實(shí)現(xiàn)此功能。

    示例文件:

    圖片1

    詳細(xì)步驟:

    Step 1: 初始化PdfDocument類的對象并加載PDF文件。

    PdfDocument pdf = new PdfDocument();
    pdf.LoadFromFile("Stories.pdf");

    Step 2: 獲取第一頁。

    PdfPageBase page = pdf.Pages[0];

    Step 3: 從頁面中的特定矩形區(qū)域中提取文本,之后將文本保存為.txt文件。

    string text = page.ExtractText(new RectangleF(50, 50, 500, 100) );
    StringBuilder sb = new StringBuilder();
    sb.AppendLine(text);
    File.WriteAllText("Extract.txt", sb.ToString());

    輸出:

    圖片2

    完整代碼:

    //Initialize an object of PdfDocument class
    PdfDocument pdf = new PdfDocument();
    //Load the PDF file
    pdf.LoadFromFile("Stories.pdf");
    
    //Get the first page
    PdfPageBase page = pdf.Pages[0];
    
    // Extract text from a specific rectangular area within the page
    string text = page.ExtractText(new RectangleF(50, 50, 500, 100) );
    
    //Save the text to a .txt file
    StringBuilder sb = new StringBuilder();
    sb.AppendLine(text);
    File.WriteAllText("Extract.txt", sb.ToString());

     

    掃碼咨詢


    添加微信 立即咨詢

    電話咨詢

    客服熱線
    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); })();