彩票走势图

PDF控件Spire.PDF for .NET【转换】演示:将 PDF 转换为图像

翻译|行业资讯|编辑:胡涛|2023-07-03 14:40:02.757|阅读 62 次

概述:本文介绍如何借助spire.doc.net 将 PDF 转换为图像,欢迎查阅~

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

相关链接:

Spire.Doc 是一款专门对 Word 文档进行操作的 类库。在于帮助开发人员无需安装 Microsoft Word情况下,轻松快捷高效地创建、编辑、转换和打印 Microsoft Word 文档。拥有近10年专业开发经验Spire系列办公文档开发工具,专注于创建、编辑、转换和打印Word/PDF/Excel等格式文件处理,小巧便捷。 

E-iceblue 功能类库Spire 系列文档处理组件均由中国本土团队研发,不依赖第三方软件,不受其他国家的技术或法律法规限制,同时适配国产操作系统如中科方德、中标麒麟等,兼容国产文档处理软件 WPS(如 .wps/.et/.dps 等格式

Spire.PDF for.net下载   Spire.PDF for java下载

PDF文件具有交互性强、易于传输的优点,但在某些情况下,也需要将PDF转换为图像,以便嵌入网页或在某些不支持PDF格式的平台上显示。在本文中,您将学习如何使用Spire.PDF for .NET在 C# 和 VB.NET 中将PDF 转换为 JPG、PNG 或 BMP 图像格式 。

安装适用于 .NET 的 Spire.PDF
PM> Install-Package Spire.PDF
使用 C# 和 VB.NET 将特定 PDF 页面转换为图像

首先,您需要将 Spire.PDF for .NET 包中包含的 DLL 文件添加为 .NET 项目中的引用。DLL 文件可以从此链接下载或通过NuGet安装。

Spire.PDF for .NET 提供PdfDocument.SaveAsImage()方法将 PDF 中的特定页面转换为图像。然后,您可以将图像另存为JPEG、PNG、BMP、EMF、GIFWMF文件。以下是详细步骤。

  • 创建一个文档实例。
  • 使用PdfDocument.LoadFromFile()方法加载示例 PDF 文档。
  • 将特定页面转换为图像并使用PdfDocument.SaveAsImage(int pageIndex, PdfImageType type, int dpiX, int dpiY)方法设置图像 Dpi。
  • 使用Image.Save(string filename, ImageFormat format)方法将图像保存为 PNG、JPG 或 BMP 文件。

[C#]

using Spire.Pdf;
using Spire.Pdf.Graphics;
using System.Drawing;
using System.Drawing.Imaging;

namespace PDFtoImage
{
class Program
{
static void Main(string[] args)
{
//Create a PdfDocument instance
PdfDocument pdf = new PdfDocument();

//Load a sample PDF document
pdf.LoadFromFile("E:\\Files\\input.pdf");

//Convert the first page to an image and set the image Dpi
Image image = pdf.SaveAsImage(0, PdfImageType.Bitmap, 500, 500);

//Save the image as a JPG file
image.Save("ToJPG.jpg", ImageFormat.Jpeg);

//Save the image as a PNG file
//image.Save("ToPNG.png", ImageFormat.Png);

//Save the image as a BMP file
//image.Save("ToBMP.bmp", ImageFormat.Bmp);
}
}
}

[.NET]

Imports Spire.PDF
Imports Spire.PDF.Graphics
Imports System.Drawing
Imports System.Drawing.Imaging

Namespace PDFtoImage
Class Program
Private Shared Sub Main(ByVal args() As String)

'Create a PdfDocument instance
Dim pdf As PdfDocument = New PdfDocument

'Load a sample PDF document
pdf.LoadFromFile("E:\Files\input.pdf")

'Convert the first page to an image and set the image Dpi
Dim image As Image = pdf.SaveAsImage(0, PdfImageType.Bitmap, 500, 500)

'Save the image as a JPG file
image.Save("ToJPG.jpg", ImageFormat.Jpeg)

'Save the image as a PNG file
'image.Save("ToPNG.png", ImageFormat.Png);

'Save the image as a BMP file
'image.Save("ToBMP.bmp", ImageFormat.Bmp);
End Sub
End Class
End Namespace

C#/VB.NET:将 PDF 转换为图像(JPG、PNG、BMP)

使用 C# 和 VB.NET 将整个 PDF 文档转换为多个图像

如果您想将整个 PDF 文档转换为多个单独的图像,您可以循环浏览 PDF 中的所有页面,然后将它们另存为 JPG、PNG 或 BMP 图像。以下是详细步骤。

  • 创建一个PdfDocument实例。
  • 使用PdfDocument.LoadFromFile()方法加载示例 PDF 文档。
  • 循环遍历文档的所有页面,并使用PdfDocument.SaveAsImage(int pageIndex, PdfImageType type, int dpiX, int dpiY)方法将它们转换为图像时设置图像 Dpi。
  • 使用Image.Save()方法将图像保存为 PNG 文件。

[C#]

using Spire.Pdf;
using Spire.Pdf.Graphics;
using System;
using System.Drawing;
using System.Drawing.Imaging;

namespace PDFtoImage
{
class Program
{
static void Main(string[] args)
{
//Create a PdfDocument instance
PdfDocument pdf = new PdfDocument();

//Load a sample PDF document
pdf.LoadFromFile("input.pdf");

//Loop through each page in the PDF
for (int i = 0; i < pdf.Pages.Count; i++)
{
//Convert all pages to images and set the image Dpi
Image image = pdf.SaveAsImage(i, PdfImageType.Bitmap, 500, 500);

//Save images as PNG format to a specified folder
String file = String.Format("Image\\ToImage-{0}.png", i);
image.Save(file, ImageFormat.Png);

}
}
}
}

[.NET]

Imports Spire.PDF
Imports Spire.PDF.Graphics
Imports System.Drawing
Imports System.Drawing.Imaging

Namespace PDFtoImage
Class Program
Private Shared Sub Main(ByVal args() As String)

'Create a PdfDocument instance
Dim pdf As PdfDocument = New PdfDocument

'Load a sample PDF document
pdf.LoadFromFile("input.pdf")

'Loop through each page in the PDF
For i As Integer = 0 To pdf.Pages.Count - 1

'Convert all pages to images and set the image Dpi
Dim image As Image = pdf.SaveAsImage(i, PdfImageType.Bitmap, 500, 500)

'Save images as PNG format to a specified folder
Dim file As String = String.Format("Image\ToImage-{0}.png", i)
image.Save(file, ImageFormat.Png)
Next
End Sub
End Class
End Namespace

C#/VB.NET:将 PDF 转换为图像(JPG、PNG、BMP)

以上便是如何借助spire.doc.net 将 PDF 转换为图像,如果您有其他问题也可以继续浏览本系列文章,获取相关教程,你还可以给我留言或者加入我们的官方技术交流群。


欢迎下载|体验更多E-iceblue产品

获取更多信息请咨询  ;技术交流Q群(767755948)


标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn


为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP