.net Aspose.pdf 转html 去除版权
程序员文章站
2022-03-10 15:57:31
时光偷走的,永远都是我们眼皮底下看不见的珍贵。 1、 资源文件 a) Aspose.pdf.18.12.0.nupkg 链接:https://pan.baidu.com/s/171_OWOfI5BqYky5JvC06aw 提取码:vpxi b) Aspose官网下载比较慢,未知原因 c) nuget ......
时光偷走的,永远都是我们眼皮底下看不见的珍贵。
1、 资源文件
a) aspose.pdf.18.12.0.nupkg
链接:https://pan.baidu.com/s/171_owofi5bqyky5jvc06aw 提取码:vpxi
b) aspose官网下载比较慢,未知原因
c) nuget安装不了,应该是被墙了
d) 具体离线安装方式自行百度
2、 解决问题
a) pdf转换html后去除版权
3、 提供思路
a) 转换完成后版权信息在html中显示,我们可以通过读取html文件流的方式,将html中版权文字替换成空格。
4、 代码编写
public bool removecopyright(string filepath) { try { stream mystream = new filestream(filepath, filemode.open); encoding encode = system.text.encoding.getencoding("utf-8"); streamreader mystreamreader = new streamreader(mystream, encode); string strhtml = mystreamreader.readtoend(); string stroutput = strhtml.replace("evaluation only. created with aspose.pdf. copyright 2002-2018 aspose pty ltd. ", " "); // evaluation……pty ltd.是对应的版权文字,可以根据实际进行替换。 mystream.seek(0, seekorigin.begin); mystream.setlength(0); streamwriter sw = new streamwriter(mystream, encode); sw.write(stroutput); sw.flush(); sw.close(); mystream.close(); } catch (exception) { return false; } return true; }
上一篇: JSP编译成Servlet(三)JSP编译后的Servlet
下一篇: 我看《搜索引擎百度已死》
推荐阅读
-
使用Aspose.PDF for .NET将PDF转换为HTML格式示例解读(3)——将字体另存为WOFF或TTF
-
PDF开发工具Aspose.PDF功能推荐——在.NET中将PDF转换为HTML
-
使用Aspose.PDF for .NET将PDF转换为HTML格式示例解读(4)——为图像文件指定前缀名
-
asp.net 实现在线浏览word文档(word转html)
-
使用Aspose.PDF for .NET将PDF转换为HTML格式示例解读(7)——添加前缀以导入指令
-
使用Aspose.PDF for .NET将PDF转换为HTML格式示例解读(8)——将输出保存到Stream对象
-
[转]Html.DropDownList()的用法 ( Asp.Net MVC)
-
.net Aspose.pdf 转html 去除版权
-
使用Aspose.PDF for .NET将PDF转换为HTML格式示例解读(3)——将字体另存为WOFF或TTF
-
使用Aspose.PDF for .NET将PDF转换为HTML格式示例解读(6)——在style.css中设置字体的URL前缀