Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
本文解释了如何使用 C# 将 PDF 转换为不同的图像格式。它涵盖以下主题。
图像格式:TIFF
图像格式:BMP
图像格式:EMF
图像格式:JPG
图像格式:PNG
图像格式:GIF
图像格式:SVG
以下代码片段也适用于 Aspose.PDF.Drawing 库。
Aspose.PDF for .NET 使用几种方法将 PDF 转换为图像。一般来说,我们使用两种方法:使用设备方法进行转换和使用 SaveOption 进行转换。本节将向您展示如何使用这些方法之一将 PDF 文档转换为 BMP、JPEG、GIF、PNG、EMF、TIFF 和 SVG 格式的图像。
库中有几个类允许您使用虚拟设备转换图像。DocumentDevice 旨在转换整个文档,而 ImageDevice 则用于特定页面。
Aspose.PDF for .NET 使得将 PDF 页面转换为 TIFF 图像成为可能。
TiffDevice(基于 DocumentDevice)类允许您将 PDF 页面转换为 TIFF 图像。此类提供一个名为 Process
的方法,允许您将 PDF 文件中的所有页面转换为单个 TIFF 图像。
Aspose.PDF for .NET 解释了如何将 PDF 文件中的所有页面转换为单个 TIFF 图像:
以下代码片段演示了如何将所有 PDF 页面转换为单个 TIFF 图像。
// For complete examples and data files, visit https://github.com/aspose-pdf/Aspose.PDF-for-.NET
private static void ConvertPDFtoTIFF()
{
// The path to the documents directory
var dataDir = RunExamples.GetDataDir_AsposePdf_WorkingDocuments();
// Open PDF document
using (var document = new Aspose.Pdf.Document(dataDir + "PDFtoTIFF.pdf"))
{
// Create Resolution object
var resolution = new Aspose.Pdf.Devices.Resolution(300);
// Create TiffSettings object
var tiffSettings = new Aspose.Pdf.Devices.TiffSettings
{
Compression = Aspose.Pdf.Devices.CompressionType.None,
Depth = Aspose.Pdf.Devices.ColorDepth.Default,
Shape = Aspose.Pdf.Devices.ShapeType.Landscape,
SkipBlankPages = false
};
// Create TIFF device
var tiffDevice = new Aspose.Pdf.Devices.TiffDevice(resolution, tiffSettings);
// Convert a particular page and save the image to stream
tiffDevice.Process(document, dataDir + "PDFtoTIFF_out.tif");
}
}
Aspose.PDF for .NET 允许将 PDF 文件中的特定页面转换为 TIFF 图像,使用重载的 Process(..) 方法,该方法将页面编号作为参数进行转换。以下代码片段演示了如何将 PDF 的第一页转换为 TIFF 格式。
步骤:在 C# 中将单个或特定页面的 PDF 转换为 TIFF
// For complete examples and data files, visit https://github.com/aspose-pdf/Aspose.PDF-for-.NET
private static void ConvertPDFtoTiffSinglePage()
{
// The path to the documents directory
var dataDir = RunExamples.GetDataDir_AsposePdf_WorkingDocuments();
// Open PDF document
using (var document = new Aspose.Pdf.Document(dataDir + "PDFtoTiffSinglePage.pdf"))
{
// Create Resolution object
var resolution = new Aspose.Pdf.Devices.Resolution(300);
// Create TiffSettings object
var tiffSettings = new Aspose.Pdf.Devices.TiffSettings
{
Compression = Aspose.Pdf.Devices.CompressionType.None,
Depth = Aspose.Pdf.Devices.ColorDepth.Default,
Shape = Aspose.Pdf.Devices.ShapeType.Landscape,
};
// Create TIFF device
var tiffDevice = new Aspose.Pdf.Devices.TiffDevice(resolution, tiffSettings);
// Convert a particular page and save the image to stream
tiffDevice.Process(document, 1, 1, dataDir + "PDFtoTiffSinglePage_out.tif");
}
}
Aspose.PDF for .NET 一直支持使用 LZW 压缩将 PDF 转换为 TIF 的功能,然后使用 AForge,可以应用二值化。然而,一位客户请求对于某些图像,他们需要使用 Otsu 获取阈值,因此他们还希望使用 Bradley。
// For complete examples and data files, visit https://github.com/aspose-pdf/Aspose.PDF-for-.NET
private static void ConvertPDFtoTiffBradleyBinarization()
{
// The path to the documents directory
var dataDir = RunExamples.GetDataDir_AsposePdf_WorkingDocuments();
// Open PDF document
using (var document = new Aspose.Pdf.Document(dataDir + "PDFtoTiffBradleyBinarization.pdf"))
{
string outputImageFile = dataDir + "PDFtoTiffBradleyBinarization_out.tif";
string outputBinImageFile = dataDir + "PDFtoTiffBradleyBinarization-bin_out.tif";
// Create Resolution object
var resolution = new Aspose.Pdf.Devices.Resolution(300);
// Create TiffSettings object
var tiffSettings = new Aspose.Pdf.Devices.TiffSettings
{
Compression = Aspose.Pdf.Devices.CompressionType.LZW,
Depth = Aspose.Pdf.Devices.ColorDepth.Format1bpp
};
// Create TIFF device
var tiffDevice = new Aspose.Pdf.Devices.TiffDevice(resolution, tiffSettings);
// Convert a particular page and save the image to stream
tiffDevice.Process(document, outputImageFile);
// Binarize the image using Bradley method
using (var inStream = new FileStream(outputImageFile, FileMode.Open))
{
using (var outStream = new FileStream(outputBinImageFile, FileMode.Create))
{
tiffDevice.BinarizeBradley(inStream, outStream, 0.1);
}
}
}
}
ImageDevice
是 BmpDevice
、JpegDevice
、GifDevice
、PngDevice
和 EmfDevice
的祖先。
让我们看看如何将 PDF 页面转换为图像。
BmpDevice
类提供一个名为 Process 的方法,允许您将 PDF 文件的特定页面转换为 BMP 图像格式。其他类也有相同的方法。因此,如果我们需要将 PDF 页面转换为图像,我们只需实例化所需的类。
以下步骤和 C# 代码片段展示了这种可能性
步骤:在 C# 中将 PDF 转换为图像(BMP、EMF、JPG、PNG、GIF)
// For complete examples and data files, visit https://github.com/aspose-pdf/Aspose.PDF-for-.NET
private static void ConvertPDFusingImageDevice()
{
// The path to the documents directory
var dataDir = RunExamples.GetDataDir_AsposePdf_WorkingDocuments();
// Create Resolution object
var resolution = new Aspose.Pdf.Devices.Resolution(300);
var bmpDevice = new Aspose.Pdf.Devices.BmpDevice(resolution);
var jpegDevice = new Aspose.Pdf.Devices.JpegDevice(resolution);
var gifDevice = new Aspose.Pdf.Devices.GifDevice(resolution);
var pngDevice = new Aspose.Pdf.Devices.PngDevice(resolution);
var emfDevice = new Aspose.Pdf.Devices.EmfDevice(resolution);
// Open PDF document
using (var document = new Aspose.Pdf.Document(dataDir + "ConvertAllPagesToBmp.pdf"))
{
ConvertPDFtoImage(bmpDevice, "bmp", document, dataDir);
ConvertPDFtoImage(jpegDevice, "jpeg", document, dataDir);
ConvertPDFtoImage(gifDevice, "gif", document, dataDir);
ConvertPDFtoImage(pngDevice, "png", document, dataDir);
ConvertPDFtoImage(emfDevice, "emf", document, dataDir);
}
}
private static void ConvertPDFtoImage(ImageDevice imageDevice,
string ext, Document document, var dataDir)
{
for (int pageCount = 1; pageCount <= document.Pages.Count; pageCount++)
{
using (FileStream imageStream =
new FileStream($"{dataDir}image{pageCount}_out.{ext}",
FileMode.Create))
{
// Convert a particular page and save the image to stream
imageDevice.Process(document.Pages[pageCount], imageStream);
}
}
}
尝试在线将 PDF 转换为 PNG
作为我们免费应用程序工作原理的示例,请查看下一个功能。
Aspose.PDF for .NET 为您提供在线免费应用程序 “PDF to PNG”,您可以尝试调查其功能和工作质量。
本文的这一部分向您展示如何使用 C# 和 SaveOptions 类将 PDF 转换为 SVG。
可缩放矢量图形(SVG) 是一种基于 XML 的文件格式的规范系列,用于二维矢量图形,包括静态和动态(交互式或动画)。SVG 规范是一个开放标准,自 1999 年以来一直由万维网联盟(W3C)开发。
SVG 图像及其行为在 XML 文本文件中定义。这意味着它们可以被搜索、索引、脚本化,并在需要时进行压缩。作为 XML 文件,SVG 图像可以使用任何文本编辑器创建和编辑,但通常使用绘图程序(如 Inkscape)创建它们更为方便。
Aspose.PDF for .NET 支持将 SVG 图像转换为 PDF 格式的功能,并且还提供将 PDF 文件转换为 SVG 格式的能力。为了实现这一要求,SvgSaveOptions
类已被引入到 Aspose.PDF 命名空间中。实例化一个 SvgSaveOptions 对象,并将其作为第二个参数传递给 Document.Save(..)
方法。
以下代码片段展示了将 PDF 文件转换为 SVG 格式的步骤。
// For complete examples and data files, visit https://github.com/aspose-pdf/Aspose.PDF-for-.NET
private static void ConvertPDFtoSVG()
{
// The path to the documents directory
var dataDir = RunExamples.GetDataDir_AsposePdf_WorkingDocuments();
// Open PDF document
using (var document = new Aspose.Pdf.Document(dataDir + "PDFtoSVG.pdf"))
{
// Instantiate an object of SvgSaveOptions
var saveOptions = new Aspose.Pdf.SvgSaveOptions
{
// Do not compress SVG image to Zip archive
CompressOutputToZipArchive = false,
TreatTargetFileNameAsDirectory = true
};
// Save SVG file
document.Save(dataDir + "PDFToSVG_out.svg", saveOptions);
}
}
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.