Aspose.PSD
19.12.0
Aspose.PSD for .NET provides extensive manipulation capabilities for PSD and PSB file formats without requiring Adobe Photoshop and entry level export capabilities for AI file format without requiring Adobe Illustrator. Aspose.PSD for .NET allows to create and edit the Photoshop files as well as provides the ability to update layer properties, add watermarks, perform graphics operations or convert one file format to another. It supports import as a layer and export to the following formats: Png, Jpeg, Jpeg2000, Gif, Bmp, Tiff, Psd, Psb along with export to Pdf with selectable text. Aspose.PSD partially supports such Adobe Photoshop features as Adjustment Layers, Text Layer rendering and editing, Fill Layers, Layers Effects, Editing of Raster and Vector Masks for layers. New features are added every month, keeping backward compatibility as one of the product’s priorities.
See the version list below for details.
Install-Package Aspose.PSD -Version 19.12.0
dotnet add package Aspose.PSD --version 19.12.0
<PackageReference Include="Aspose.PSD" Version="19.12.0" />
paket add Aspose.PSD --version 19.12.0
Aspose.PSD for .NET API allows to create and edit Adobe Photoshop® files as well as provides the ability to update layer properties, add watermarks, perform graphics operations and convert Photoshop files to other supported formats.
Photoshop File Processing Features
- Create Photoshop PSD & PSB files via API.
- Export PSD images to popular image formats.
- Binarization with fixed & Otsu threshold.
- Convert GIF image layers to TIFF & CMYK PSD to CMYK TIFF.
- Combine, expand or crop images.
- Create, read and write XMP data.
- Set default font as a replacement for all the missing fonts.
- Apply Median & Wiener filters to reduce image noise.
- Transform images to black-n-white or grayscale.
- Crop images by shifts or rectangle.
- Rotate an image on a specific angle
- Perform simple image resize, or by image proportions.
- Support for dithering of raster images.
- Adjust image brightness, contrast and gamma.
- Implement Lossy GIF Compression & Bicubic Resampling.
- Color Balance or invert Adjustment Layer.
- Draw basic objects such as lines, Ellipse, Rectangle, Arc, Bezier
Read & Write Photoshop Formats
Photoshop: PSD, PSB
Save Photoshop Files As
Raster Formats: TIFF, JPEG, PNG, GIF, BMP, JPEG2000
Platform Independence
Aspose.PSD for .NET can work in any environment that supports .NET framework 2.0 or above.
Getting Started with Aspose.PSD for .NET
Are you ready to give Aspose.PSD for .NET a try? Simply execute Install-Package Aspose.PSD
from Package Manager Console in Visual Studio to fetch the NuGet package. If you already have Aspose.PSD for .NET and want to upgrade the version, please execute Update-Package Aspose.PSD
to get the latest version.
Crop a PhotoShop PSD to Save Result in PNG format
You can execute below code snippet to see how Aspose.PSD API works in your own development environment or check the GitHub Repository for other common usage scenarios.
// implement correct Crop method for PSD files.
using (RasterImage image = Image.Load(dir + "template.psd") as RasterImage)
{
image.Crop(new Rectangle(10, 30, 100, 100));
image.Save(dir + "output.png", new PngOptions() { ColorType = PngColorType.TruecolorWithAlpha });
}
Draw Rectangles in a PSD Image
Aspose.PSD for .NET provides options to process and manipulate Adobe Photoshop files including drawing new objects.
// create an instance of Image
using (Image image = new PsdImage(100, 100))
{
Graphics graphic = new Graphics(image);
graphic.Clear(Color.Yellow);
// draw a rectangle with Pen tool
graphic.DrawRectangle(new Pen(Color.Red), new Rectangle(30, 10, 40, 80));
// draw another rectangle with Solid Brush in Blue color
graphic.DrawRectangle(new Pen(new SolidBrush(Color.Blue)), new Rectangle(10, 30, 80, 40));
}
Product Page | Documentation | API Reference | Code Examples | Blog | Free Support | Temporary License
Aspose.PSD for .NET API allows to create and edit Adobe Photoshop® files as well as provides the ability to update layer properties, add watermarks, perform graphics operations and convert Photoshop files to other supported formats.
Photoshop File Processing Features
- Create Photoshop PSD & PSB files via API.
- Export PSD images to popular image formats.
- Binarization with fixed & Otsu threshold.
- Convert GIF image layers to TIFF & CMYK PSD to CMYK TIFF.
- Combine, expand or crop images.
- Create, read and write XMP data.
- Set default font as a replacement for all the missing fonts.
- Apply Median & Wiener filters to reduce image noise.
- Transform images to black-n-white or grayscale.
- Crop images by shifts or rectangle.
- Rotate an image on a specific angle
- Perform simple image resize, or by image proportions.
- Support for dithering of raster images.
- Adjust image brightness, contrast and gamma.
- Implement Lossy GIF Compression & Bicubic Resampling.
- Color Balance or invert Adjustment Layer.
- Draw basic objects such as lines, Ellipse, Rectangle, Arc, Bezier
Read & Write Photoshop Formats
Photoshop: PSD, PSB
Save Photoshop Files As
Raster Formats: TIFF, JPEG, PNG, GIF, BMP, JPEG2000
Platform Independence
Aspose.PSD for .NET can work in any environment that supports .NET framework 2.0 or above.
Getting Started with Aspose.PSD for .NET
Are you ready to give Aspose.PSD for .NET a try? Simply execute Install-Package Aspose.PSD
from Package Manager Console in Visual Studio to fetch the NuGet package. If you already have Aspose.PSD for .NET and want to upgrade the version, please execute Update-Package Aspose.PSD
to get the latest version.
Crop a PhotoShop PSD to Save Result in PNG format
You can execute below code snippet to see how Aspose.PSD API works in your own development environment or check the GitHub Repository for other common usage scenarios.
// implement correct Crop method for PSD files.
using (RasterImage image = Image.Load(dir + "template.psd") as RasterImage)
{
image.Crop(new Rectangle(10, 30, 100, 100));
image.Save(dir + "output.png", new PngOptions() { ColorType = PngColorType.TruecolorWithAlpha });
}
Draw Rectangles in a PSD Image
Aspose.PSD for .NET provides options to process and manipulate Adobe Photoshop files including drawing new objects.
// create an instance of Image
using (Image image = new PsdImage(100, 100))
{
Graphics graphic = new Graphics(image);
graphic.Clear(Color.Yellow);
// draw a rectangle with Pen tool
graphic.DrawRectangle(new Pen(Color.Red), new Rectangle(30, 10, 40, 80));
// draw another rectangle with Solid Brush in Blue color
graphic.DrawRectangle(new Pen(new SolidBrush(Color.Blue)), new Rectangle(10, 30, 80, 40));
}
Product Page | Documentation | API Reference | Code Examples | Blog | Free Support | Temporary License
Release Notes
https://docs.aspose.com/display/psdnet/Aspose.PSD+for+.NET+19.12+-+Release+Notes
Dependencies
This package has no dependencies.
Used By
NuGet packages (2)
Showing the top 2 NuGet packages that depend on Aspose.PSD:
Package | Downloads |
---|---|
Aspose.Total
Aspose.Total for .NET is the most complete package of all .NET file format APIs offered by Aspose. It empowers developers to create, edit, render, print and convert between a wide range of popular document formats within any .NET, C#, ASP.NET and VB.NET applications.
|
|
Conholdate.Total
Conholdate.Total for .NET is a complete package to work with a large number of file formats from Microsoft Word, Excel, PowerPoint, Outlook, Project, Visio, Adobe Acrobat, Illustrator, Photoshop, AutoCAD, OpenOffice and many more.
Conholdate.Total for .NET allows you to use any API released under Aspose and GroupDocs for .NET in order to create, convert, read, edit, update and print popular document formats. Moreover, you may view, annotate, watermark, assemble, classify, search, redact, parse, merge and compare documents without needing to install the native applications.
Conholdate.Total for .NET also includes specialized APIs to read and create barcodes, extract text from images using OCR as well as extract human marked data from questioners, surveys, quizzes, MCQ papers and feedback forms.
|
GitHub repositories
This package is not used by any popular GitHub repositories.
Version History
Version | Downloads | Last updated |
---|---|---|
20.12.0 | 180 | 12/31/2020 |
20.11.0 | 290 | 12/1/2020 |
20.10.0 | 1,122 | 10/22/2020 |
20.9.0 | 510 | 9/30/2020 |
20.8.0 | 713 | 8/31/2020 |
20.7.0 | 739 | 7/30/2020 |
20.6.0 | 717 | 6/29/2020 |
20.5.0 | 689 | 5/28/2020 |
20.4.0 | 1,647 | 4/27/2020 |
20.3.0 | 585 | 3/31/2020 |
20.2.0 | 1,931 | 2/25/2020 |
19.12.0 | 1,696 | 12/12/2019 |
19.11.0 | 506 | 11/29/2019 |
19.10.0 | 465 | 10/29/2019 |
19.9.0 | 364 | 9/26/2019 |
19.8.0 | 2,905 | 8/30/2019 |
19.7.0 | 284 | 8/12/2019 |
19.6.0 | 343 | 7/15/2019 |
19.5.0 | 605 | 5/20/2019 |
19.4.0 | 472 | 4/16/2019 |
19.3.0 | 413 | 3/15/2019 |
19.2.0 | 1,171 | 2/14/2019 |
18.12.0 | 382 | 12/7/2018 |
18.10.0 | 577 | 10/4/2018 |
18.8.0 | 431 | 8/13/2018 |