# Aspose.PSD-for-Java **Repository Path**: yeguoguo/Aspose.PSD-for-Java ## Basic Information - **Project Name**: Aspose.PSD-for-Java - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2023-11-16 - **Last Updated**: 2023-11-16 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Java Library for Photoshop Files [Aspose.PSD for Java](https://products.aspose.com/psd/java) is an easy to use Adobe Photoshop file format manipulation API. It can easily load and read PSD, PSB & AI files, making it possible for the Java developers to perform operations like updating layer properties, adding watermarks, compression, rotation, scaling or rendering one file format to another without needing to install Adobe Photoshop.
## Photoshop File Processing - Load, create & manipulate PSD & PSB files. - Compress PSD with RLE. - Rotate, flip, scale or crop images. - Read & write EXIF data. - Convert vector to raster. - Adjust Brightness, Contrast & Gamma. - Draw and fill basic shapes. - Clip rectangular regions. - Apply dithering. ## Load Photoshop & Illustrator Files **Adobe**: PSD, PSB, AI ## Save Photoshop & Illustrator Files As **Raster**: TIFF, JPEG, PNG, GIF, BMP, JPEG2000\ **Fixed Layout**: PDF ## Supported Environments - **Microsoft Windows:** Windows Desktop & Server (x86, x64) - **macOS:** Mac OS X - **Linux:** Ubuntu, OpenSUSE, CentOS, and others - **Java Versions:** `J2SE 6.0 (1.6)` or above ## Get Started with Aspose.PSD for Java Aspose hosts all Java APIs at the [Aspose Repository](https://repository.aspose.com/webapp/#/artifacts/browse/tree/General/repo/com/aspose/aspose-psd). You can easily use Aspose.PSD for Java API directly in your Maven projects with simple configurations. For the detailed instructions please visit [Installing Aspose.PSD for Java from Maven Repository](https://docs.aspose.com/psd/java/installation/) documentation psd. ## Create a PSD from Scratch ```java PsdImage bmpImage = new PsdImage(300, 300); // fill image data. Graphics graphics = new Graphics(bmpImage); graphics.clear(Color.getWhite()); Pen pen = new Pen(Color.getBrown()); graphics.drawRectangle(pen, bmpImage.getBounds()); // create an instance of PsdOptions, Set it's various properties Save image to disk in PSD format PsdOptions psdOptions = new PsdOptions(); psdOptions.setColorMode(ColorModes.Rgb); psdOptions.setCompressionMethod(CompressionMethod.Raw); psdOptions.setVersion(4); bmpImage.save("output.psd", psdOptions); ``` [Home](https://www.aspose.com/) | [Product Page](https://products.aspose.com/psd/java) | [Docs](https://docs.aspose.com/psd/java/) | [Demos](https://products.aspose.app/psd/family) | [API Reference](https://apireference.aspose.com/psd/java) | [Examples](https://github.com/aspose-psd/Aspose.PSD-for-Java) | [Blog](https://blog.aspose.com/category/psd/) | [Search](https://search.aspose.com/) | [Free Support](https://forum.aspose.com/c/psd) | [Temporary License](https://purchase.aspose.com/temporary-license)