如何将 pdf 转换为 .net 中的位图图像?
寻找将 pdf 文件的指定页面转换为位图图像的解决方案。
Looking for solution to convert a specified page of a pdf file to a bitmap image.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
寻找将 pdf 文件的指定页面转换为位图图像的解决方案。
Looking for solution to convert a specified page of a pdf file to a bitmap image.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
我在之前的项目中做到了这一点。我们使用了 ImageMagick.NET,它可能是目前最伟大的开源图像处理 API 的包装器,ImageMagick
http://imagemagick.codeplex.com/
I did this in a previous project. We used ImageMagick.NET which is a wrapper of perhaps the greatest open source image manipulation API there is, ImageMagick
http://imagemagick.codeplex.com/
这可能会完成这项工作:
This might do the job:
从 SourceForge 下载 PDFcreator。它是开源的,并且有COM自动化组件、多种语言的示例代码。您可以使用 PDFcreator 打印机驱动程序以多种图形格式保存。
Download PDFcreator from SourceForge. It is open source, and has COM automation component, sample code in a variety of languages. You can use the PDFcreator printer driver to save in a numerous graphics formats.
(免责声明,我在 Software Siglo XXI 开发此组件)
如果您不想使用 Ghostscript API,并且需要一个快速工作解决方案将 PDF 文档转换为光栅图像(PNG、JPG、.. .),您可以使用Super Pdf2Image Converter .NET。它适用于 32 位和 64 位,并且非常便宜且有效。
您可以在这里查看: http://softwaresigloxxi.com/SuperPdf2ImageConverter.html
例如,这是一个转换示例代码:
(Disclaimer I worked on this component at Software Siglo XXI)
If you don't want to mess with Ghostscript API and need a quick working solution to convert PDF documents to raster images (PNG, JPG, ...), you could use Super Pdf2Image Converter .NET. It's available for both 32 and 64 bit and is very cheap and effective.
You can take a look here: http://softwaresigloxxi.com/SuperPdf2ImageConverter.html
For instance, here's a sample code for converting: