当前位置: 首页 > article >正文

Net9解决Spire.Pdf替换文字后,文件格式乱掉解决方法

官方文档

https://www.e-iceblue.com/Tutorials/Spire.PDF/Program-Guide/Text/Find-and-replace-text-on-PDF-document-in-C.html

C# 在 PDF 中查找替换文本

原文件如下图,替换第一行的新编码,把41230441044替换为41230441000

替换代码如下:

 PdfDocument doc = new PdfDocument();

 //加载PDF文档
 doc.LoadFromFile("Input.pdf");          
 PdfTextReplaceOptions textReplaceOptions = new PdfTextReplaceOptions();
 textReplaceOptions.ReplaceType = PdfTextReplaceOptions.ReplaceActionType.IgnoreCase;
 textReplaceOptions.ReplaceType = PdfTextReplaceOptions.ReplaceActionType.WholeWord;
 textReplaceOptions.ReplaceType = PdfTextReplaceOptions.ReplaceActionType.AutofitWidth;
 PdfPageBase page = doc.Pages[0];
 PdfTextReplacer textReplacer = new PdfTextReplacer(page);
 textReplacer.Options = textReplaceOptions;
 textReplacer.ReplaceAllText("41230441044", "41230441000");
 doc.SaveToFile("ReplaceTextInPage.pdf");
 doc.Dispose();

替换后格式乱了,如下图

解决方法如下,作用PdfTextFinder

参考文档https://www.e-iceblue.com/Tutorials/Spire.PDF/Spire.PDF-Program-Guide/Text/Find-and-Highlight-Selected-Text-in-PDF-in-C-VB.NET.html

C#/VB.NET 在 PDF 文档中查找并突出显示文本

PdfDocument doc = new PdfDocument();

//加载PDF文档
doc.LoadFromFile("Input.pdf");          
PdfPageBase page = doc.Pages[0];
PdfTextFinder finder = new PdfTextFinder(page);
var finds = finder.Find("41230441044");
foreach (var textFragment in finds)
{
    textFragment.ApplyRecoverString("41230441000", Color.White, true);
}
doc.SaveToFile("ReplaceTextInPage.pdf");
doc.Dispose();


http://www.kler.cn/a/447639.html

相关文章:

  • 米思齐图形化编程之ESP32开发指导
  • 分布式系统架构5:限流设计模式
  • html <a>设置发送邮件链接、打电话链接 <a href=“mailto:></a> <a href=“tel:></a>
  • WPF 使用LibVLCSharp.WPF实现视频播放、停止、暂停功能
  • SQL 插入数据详解
  • UIP协议栈 TCP通信客户端 服务端,UDP单播 广播通信 example
  • Git(11)之log显示支持中文
  • 13_HTML5 Audio(音频) --[HTML5 API 学习之旅]
  • 使用R语言高效去除低丰度OTU:从概念到实操
  • Python 写的 智慧记 进销存 辅助 程序 导入导出 excel 可打印
  • 【LuaFramework】服务器模块相关知识
  • 基于BigBangBigCrunch优化(BBBC)的目标函数求解算法matlab仿真
  • 【Rust自学】5.1. 定义并实例化struct
  • AtCoder Beginner Contest 385(A~E)题解
  • OpenEuler22.04配置zookeeper+kafka三节点集群
  • 前端滚动条自定义样式
  • 渗透测试-前后端加密分析之RSA+AES
  • 使用Python实现无人机自动导航系统:探索智能飞行的奥秘
  • ansible剧本快速上手
  • 汽车IVI中控开发入门及进阶(三十八):手机投屏HiCar开发
  • golang rocketmq保证数据一致性(以电商订单为例)
  • JAVA前端开发中type=“danger“和 type=“text“的区别
  • 《计算机组成及汇编语言原理》阅读笔记:p28-p47
  • 修改npm镜像源
  • MyBatis是什么?为什么有全自动ORM框架还是MyBatis比较受欢迎?
  • Sora技术报告【官方版】