Канвертаваць PSD у JPEG праз C#
.NET Photoshop API для PSD і PSB Пераўтварэнне ў растравыя выявы, уключаючы JPEG
Высокая якасць візуалізацыі PSD у фармаце JPEG
- Загрузіце PSD метадам Image.Load
- Стварыце асобнік класа JpegOptions
- Выклічце метад Image.Save
- Перадайце імя файла вываду і аб’ект JpegOptions
Пачаць працу з .NET Photoshop API
Усталюйце з каманднага радка як nuget install Aspose.PSD
або праз кансоль дыспетчара пакетаў Visual Studio з Install-Package Aspose.PSD
.
У якасці альтэрнатывы атрымайце аўтаномную праграму ўстаноўкі MSI або бібліятэкі DLL у ZIP-файле з [спампоўкі] ( https://releases.aspose.com/psd/net) .
.NET C# Код для пераўтварэння PSD ў JPEG
using (var image = new Image.Load("template.psd")) | |
{ | |
var options = new JpegOptions(); | |
image.Save("output.jpeg", options); | |
} |
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 MoreJPEG What is JPEG File Format?
A JPEG is a type of image format that is saved using the method of lossy compression. The output image, as result of compression, is a trade-off between storage size and image quality. Users can adjust the compression level to achieve the desired quality level while at the same time reduce the storage size. Image quality is negligibly affected if 10:1 compression is applied to the image. The higher the compression value, the higher the degradation in image quality.
Read More