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을 사용한 변환. 이 섹션에서는 BMP, JPEG, GIF, PNG, EMF, TIFF 및 SVG 형식과 같은 이미지 형식으로 PDF 문서를 변환하는 방법을 보여줍니다.
라이브러리에는 이미지를 변환하기 위해 가상 장치를 사용할 수 있는 여러 클래스가 있습니다. DocumentDevice는 전체 문서 변환을 위해 설계되었지만 ImageDevice는 특정 페이지를 위해 설계되었습니다.
Aspose.PDF for .NET는 PDF 페이지를 TIFF 이미지로 변환할 수 있게 합니다.
TiffDevice(문서 장치를 기반으로 하는) 클래스는 PDF 페이지를 TIFF 이미지로 변환할 수 있게 해줍니다. 이 클래스는 PDF 파일의 모든 페이지를 단일 TIFF 이미지로 변환할 수 있는 Process
라는 메서드를 제공합니다.
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
클래스는 PDF 파일의 특정 페이지를 BMP 이미지 형식으로 변환할 수 있는 Process라는 메서드를 제공합니다. 다른 클래스들도 동일한 메서드를 가지고 있습니다. 따라서 PDF 페이지를 이미지로 변환해야 할 경우, 필요한 클래스를 인스턴스화하기만 하면 됩니다.
다음 단계와 C# 코드 스니펫은 이 가능성을 보여줍니다.
단계: PDF를 이미지로 변환 (BMP, EMF, JPG, PNG, GIF) C#에서
// 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로 변환하는 방법을 보여줍니다.
**Scalable Vector Graphics (SVG)**는 정적 및 동적(인터랙티브 또는 애니메이션) 2차원 벡터 그래픽을 위한 XML 기반 파일 형식의 사양 모음입니다. SVG 사양은 1999년부터 월드 와이드 웹 컨소시엄(W3C)에 의해 개발되고 있는 개방형 표준입니다.
SVG 이미지와 그 동작은 XML 텍스트 파일로 정의됩니다. 이는 검색, 인덱싱, 스크립팅이 가능하며 필요할 경우 압축할 수 있음을 의미합니다. XML 파일로서 SVG 이미지는 모든 텍스트 편집기로 생성 및 편집할 수 있지만, Inkscape와 같은 드로잉 프로그램을 사용하여 생성하는 것이 더 편리합니다.
Aspose.PDF for .NET는 SVG 이미지를 PDF 형식으로 변환하는 기능을 지원하며, PDF 파일을 SVG 형식으로 변환하는 기능도 제공합니다. 이 요구 사항을 충족하기 위해 SvgSaveOptions
클래스가 Aspose.PDF 네임스페이스에 도입되었습니다. SvgSaveOptions의 객체를 인스턴스화하고 이를 Document.Save(..)
메서드의 두 번째 인수로 전달합니다.
다음 코드 스니펫은 .NET에서 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.