Convert PSD to BMP via C#
.NET Photoshop API for PSD & PSB Conversion to raster images including BMP
High Quality Rendering of PSD as BMP
- Load the PSD with Image.Load method
- Create an instance of BmpOptions class
- Call Image.Save method
- Pass output filename and object of BmpOptions
Get Started with .NET Photoshop API
Install from command line as nuget install Aspose.PSD
or via Package Manager Console of Visual Studio with Install-Package Aspose.PSD
.
Alternatively, get the offline MSI installer or DLLs in a ZIP file from downloads .
.NET C# Code for PSD to BMP Conversion
PSD What is PSD File Format?
PSD, Photoshop Document, represents Adobe Photoshop’s native file format used for graphics designing and development. PSD files may include image layers, adjustment layers, layer masks, annotations, file information, keywords and other Photoshop-specific elements. Photoshop files have default extension as .PSD and has a maximum height and width of 30,000 pixels, and a length limit of two gigabytes.
Read MoreBMP What is BMP File Format?
Files having extension .BMP represent Bitmap Image files that are used to store bitmap digital images. These images are independent of graphics adapter and are also called device independent bitmap (DIB) file format. This independency serves the purpose of opening the file on multiple platforms such as Microsoft Windows and Mac. The BMP file format can store data as two-dimensional digital images in both monochrome as well as color format with various colour depths.
Read More