DOCX
JPG
PDF
XML
PSB
JPEG
Convert PSB to JPEG via Java
Java Photoshop API for PSB Conversion to raster images including JPEG
How to Convert PSB to JPEG Using Java
In order to render PSB to JPEG, we’ll use
API which is a feature-rich, powerful and easy to use conversion API for Java platform. You can download its latest version directly from
and install it within your Maven-based project by adding the following configurations to the pom.xml.
Repository
<repository>
<id>AsposeJavaAPI</id>
<name>Aspose Java API</name>
<url>https://repository.aspose.com/repo/</url>
</repository>
Dependency
<dependency>
<groupId>com.aspose</groupId>
<artifactId>aspose-psd</artifactId>
<version>version of aspose-psd API</version>
<classifier>jdk17</classifier>
</dependency>
Steps to Convert PSB to JPEG via Java
Aspose.PSD API makes it easy for the developers to convert PSB file to JPEG in just a few lines of code.
- Load the PSB file
- Create an instance of JpegOptions class .
- Use Image.save(String, JpegOptions) method for conversion.
System Requirements
Aspose.PSD for Java supports on all major platforms and Operating Systems. Please make sure that you have the following prerequisites.
- Microsoft Windows or a compatible OS with Java Runtime Environment for JSP/JSF Application and Desktop Applications.
- Get latest version of Aspose.PSD for Java directly from Aspose Maven Repository .
Convert PSB to JPEG - Java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Specify input path for PSB file | |
String sourceFileName = dataDir + "sourceFile.psb"; | |
// Load input PSB file | |
PsdLoadOptions opts = new PsdLoadOptions(); | |
PsdImage image = (PsdImage)Image.load(sourceFileName, opts); | |
// Initialize JpegOptions class object | |
JpegOptions jpegoptions = new JpegOptions(); | |
jpegoptions.setQuality(95); | |
// Convert PSB to JPEG file | |
image.save(dataDir + "converted_output.jpg",jpegoptions); |
PSB to JPEG Conversion Live Demos
Other Supported Conversions
You can also convert PSB into many other file formats including few listed below.
PSB TO PSD (Adobe Photoshop Native Format)
PSB TO TIFF (Tagged Image Format)
PSB TO PNG (Portable Network Graphics)
PSB TO GIF (Graphical Interchange Format)
PSB TO BMP (Bitmap Image)
PSB TO PDF (Portable Document Format)