导出aspx页面tp pdf [英] Export aspx page tp pdf

查看:73
本文介绍了导出aspx页面tp pdf的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述


您好。您有任何代码将aspx页面转换为pdf吗?

Hi.Do you have any code to convert aspx page to pdf?

推荐答案

据我所知,执行此操作的唯一方法是让用户拥有一个允许他们打印到PDF文件的第三方应用程序。大多数版本的Adobe都会安装这样的打印机,还有许多其他产品,如PDF Complete,效果很好。
To my knowledge, the only way to do this would be for a user to have a third-party application that lets them print to a PDF file. Most versions of Adobe will install such a "printer", and there are a number of other products like PDF Complete that work well.


你不能只用一种通用方式导出它。 HTML页面具有高度结构化,并且没有某种预定义的呈现方式。渲染的细节取决于浏览器和许多其他因素,如浏览器窗口大小和缩放级别。相比之下,PDF几乎是非结构化的,并且呈现出预先渲染到特定纸张尺寸等的刚性文档。它是一种打印在纸上的文档的电子模拟。



因此,要导出,您需要输入HTML页面以及一些任意渲染选项。拥有所有这些,您可以生成PDF文档。对于ASP.NET,我建议使用库iText的.NET端口,请参阅 http://en.wikipedia.org/wiki/ IText [ ^ ], http://itextpdf.com/ [ ^ ]。使用这个库,可以使用任意样式,布局等从任何数据(不仅仅是网页)生成PDF文档。



你可以找到。这里名为iTextSharp的NET端口: http://sourceforge.net/projects/itextsharp/ [ ^ ]。



玩得开心! />


-SA
You cannot just "export" it in one universal way. An HTML page is highly structured and does not have certain predefined way of rendering it. Details of rendering depend on the browser and many other factors such as browser window size and zoom level. In contrast, PDF is pretty much unstructured and presents a rigid document pre-rendered to certain paper size, etc. It's a kind of electronic analog of a document printed on paper.

So, to export you need an input with HTML page plus some arbitrary set of rendering options. Having all that, you can generate a PDF document. For ASP.NET, I would recommend using .NET port of the library iText, see http://en.wikipedia.org/wiki/IText[^], http://itextpdf.com/[^]. Using this library, one can generate a PDF document form any data (not just a Web page) using any arbitrary style, layout, etc.

You can find the .NET port called iTextSharp here: http://sourceforge.net/projects/itextsharp/[^].

Have fun!

—SA


这篇关于导出aspx页面tp pdf的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆