Convert PS to BMP via C#
Sample code for PS to BMP C# conversion. on .NET Framework, .NET Core, and PHP, VBScript, Delphi, C++ via COM Interop.
Convert PS to BMP in .NET
Convert programmatically PS to BMP format with a modern .NET API. Use just a few lines of code to convert PS to BMP. The Aspose.PDF library will allow any developer to easily solve the tasks of converting PS to BMP using the .NET. For a more detailed description of the code snippet and other possible conversion formats, see the Documentation pages. Also, you can check the quality of converting file to file directly in your browser online in a second. With Aspose.PDF for .NET library you can convert PS to BMP programmatically. PDF software from Aspose is ideal for individuals, small or large businesses. Since it is able to process a large amount of information, perform the conversion quickly and efficiently and protect your data. A peculiar feature from Aspose.PDF is an API for converting PS to BMP. The trait of this approach is that you only need to open the NuGet package manager, search for ‘Aspose.PDF for .NET’, and install it without any special complex settings. Check the details of Installing the Library on the Documentation pages. To verify the benefits of the library, try using the conversion PS to BMP code snippet. You may also use the following command from the Package Manager Console:
Package Manager Console Command
PM> Install-Package Aspose.PDF
How to Convert PS to BMP
.NET developers can easily load & convert PS files to BMP in just a few lines of code.
- Initialize a new Document
- Create & set the instance of BmpDevice class with Size & Resolution
- Call BmpDevice.Process method with page index & output file path as parameters
- Save the output BMP file
System Requirements
Aspose.PDF for .NET is supported on all major operating systems. Just make sure that you have the following prerequisites.
- Microsoft® Windows™ or a compatible OS with .NET Framework, .NET Core, and PHP, VBScript, Delphi, C++ via COM Interop.
- Development environment like Microsoft Visual Studio.
- Aspose.PDF for .NET DLL referenced in your project.
This sample code shows PS to BMP C# Conversion
public static void ConvertPStoBMP()
{
// load PS with an instance of Document
var document = new Document("template.ps", new PsLoadOptions());
// create an object of bmpDevice
var renderer = new Aspose.Pdf.Devices.BmpDevice();
// convert a particular page and save the image in BMP format
renderer.Process(document.Pages[1], "output.bmp");
}