翼度科技»论坛 编程开发 .net 查看内容

.Net PdfiumViewer 打印时无法渲染电子签名问题的解决方法

4

主题

4

帖子

12

积分

新手上路

Rank: 1

积分
12
转载请标明原出处:https://www.cnblogs.com/crpfs/p/18463735
1. 先决条件

本文修改的动态库是从如下的 NuGet 包中获取的:
如果使用的是 Visual Studio 中的 NuGet 包管理器获取的,则其动态库(.dll)一般会存放在:
  1. .\packages\PdfiumViewer.2.13.0.0\lib\net20\PdfiumViewer.dll
复制代码
另外,还需要反编译动态库的工具:dnSpy,本文使用的是 dnSpy 作者弃坑后另一位佬接手重生的项目 dnSpyEx

2. 解决方法

① 将动态库拖入 dnSpy,展开如下命名空间:
② 找到 PdfPrintDocument 类,展开,再找到 RenderPage 方法:
③ 右键 ==> 修改方法(C#),修改最后一行代码:
  1. // 原本的代码
  2. // this._document.Render(page, e.Graphics, e.Graphics.DpiX, e.Graphics.DpiY, new Rectangle(PdfPrintDocument.AdjustDpi((double)e.Graphics.DpiX, left), PdfPrintDocument.AdjustDpi((double)e.Graphics.DpiY, top), PdfPrintDocument.AdjustDpi((double)e.Graphics.DpiX, num3), PdfPrintDocument.AdjustDpi((double)e.Graphics.DpiY, num4)), PdfRenderFlags.ForPrinting | PdfRenderFlags.Annotations);
  3. // 修改后的代码
  4. using (Image image = this._document.Render(page, PdfPrintDocument.AdjustDpi((double)e.Graphics.DpiX, (double)e.PageBounds.Width), PdfPrintDocument.AdjustDpi((double)e.Graphics.DpiX, (double)e.PageBounds.Height), e.Graphics.DpiX, e.Graphics.DpiY, PdfRotation.Rotate0, PdfRenderFlags.ForPrinting | PdfRenderFlags.Annotations))
  5. {
  6. e.Graphics.DrawImageUnscaled(image, e.PageBounds.Location);
  7. }
复制代码
④ 在菜单栏选择 文件 ==> 保存模块,直接点确定即可重新编译动态库。
注意:会直接覆盖原先的动态库,如需要则注意备份。


来源:https://www.cnblogs.com/crpfs/p/18463735
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x

举报 回复 使用道具