Net9为PDF文字替换,使用Spire.PDF版本10.12.4.1360

如下图,把第一行几个字换掉

Dll版本

替换代码

cs 复制代码
private void ReplaceTextInPage(object sender, RoutedEventArgs e)
{
    string title = "选择文件进行字符串替换...";
    string? pdfFile = FindFile(title);
    if (pdfFile is null)
        return;
    PdfDocument pdfDoc = new PdfDocument(pdfFile);

    // 创建PdfTextReplaceOptions 对象
    PdfTextReplaceOptions textReplaceOptions = new PdfTextReplaceOptions();

    // 指定文本替换的选项
    textReplaceOptions.ReplaceType = PdfTextReplaceOptions.ReplaceActionType.WholeWord;

    //遍历PDF文档所有页面
    for (int i = 0; i < pdfDoc.Pages.Count; i++)
    {
        PdfPageBase page = pdfDoc.Pages[i];

        // 根据页面创建PdfTextReplacer 对象
        PdfTextReplacer textReplacer = new PdfTextReplacer(page);
        textReplacer.Options = textReplaceOptions;

        // 将所有目标文本的出现替换为新文本
        textReplacer.ReplaceAllText("第一行", "行行行");
    }
    string name = Path.GetFileNameWithoutExtension(pdfFile);
    pdfDoc.SaveToFile($"{desktop}\\{name}_替换文本.pdf", FileFormat.PDF);
    System.Windows.MessageBox.Show("替换文本完成...");
}

替换后的效果

相关推荐
优化控制仿真模型15 小时前
【2026社工】初级社会工作者历年真题及答案PDF电子版(2010-2025年)
经验分享·pdf
南风微微吹19 小时前
【2026最新】英语六级翻译历年真题及答案汇总电子版pdf(2015-2025年12月)
pdf
Bnews19 小时前
推荐一些好用的pdf转word软件
pdf·word
南风微微吹19 小时前
【2026最新】英语四级翻译历年真题及答案汇总电子版PDF(2015-2025年12月)
pdf
加贝哥|usun20 小时前
我的Vibe Coding项目开源了:CHM转PDF批量文档转化工具
pdf·ai编程
南风微微吹1 天前
【2026年6月最新】英语六级大纲词汇表5500个PDF电子版(含正序版、乱序版和默写单词版)
pdf
2501_930707781 天前
使用C#代码获取 PDF 页面尺寸、方向和旋转角度
pdf
南风微微吹1 天前
【2026年6月最新】英语四级大纲词汇表4500个PDF电子版(含正序版、乱序版和默写单词表)
pdf