在 .NET 中生成 PDF 缩略图,无需安装完整的 Acrobat
我见过在 .NET 中生成 PDF 文件缩略图的各种方法,但不幸的是所有这些方法都需要安装完整版本的 Acrobat。有没有办法通过免费的 Adobe Reader 或任何其他方式获取它们?
I've seen various methods for generating thumbnails of PDF files in .NET, but unfortunately all of them require full version of Acrobat installed. Is there a way for getting them with free Adobe Reader or any other way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我发现 Ghostscript 非常棒,而且它是免费的!对于 Windows,它只是一个简单的 .dll 和 .exe,您可以通过 C# 以编程方式启动它们。
I find Ghostscript to be just great, and it's free! For Windows, it comes as just a simple .dll and .exe, which you can programmatically launch from C#.
您需要将 PDF 转换为 TIFF、JPEG 或 BMP。使用商业库可以让您对 PDF 进行许多其他操作。
您可以尝试这两种商业方法
http://www.informatik.com/tiff2pdf.html 或
http://www.quickpdflibrary.com/ 或
http://www.expert-tools.com/ENGLISH/index.html 或
http://www.amyuni.com/en/developer/pdfcreator/features。 html
You need a PDF to TIFF or JPEG or BMP conversion. Using a commercial library allow you to many other things with your PDF's.
You could try either of these commercial approaches
http://www.informatik.com/tiff2pdf.html or
http://www.quickpdflibrary.com/ or
http://www.expert-tools.com/ENGLISH/index.html or
http://www.amyuni.com/en/developer/pdfcreator/features.html
我知道的唯一方法是将 .pdf 加载到读者的隐藏 ActiveX 中,然后对读者的控件进行屏幕截图。它看起来很奇怪(而且确实很奇怪)——但它确实有效。
PS 或者使用第三方组件。
The only way I know is to load .pdf into readers' hidden ActiveX and then make screenshoots of reader's control. It look weird (and it is weird) -- but it works.
P.S. Or use third-part components.