Ръководство за бърз старт на Aspose.PSD адаптерите за .NET
Просто използване
Aspose.PSD адаптерите за .NET са специалните Nuget пакети, които ви позволяват да пишете код за интеграция с други Aspose продукти по-лесно.
За да започнете да използвате Aspose.PSD адаптерите, моля следвайте следните инструкции:
- Реферирайте Aspose.PSD.Adapters.Imaging от Nuget или ги изтеглете от страницата за издания на Aspose(Адаптерите са включени в основния релийз артефакт в момента) във вашия проект
- Моля, обърнете внимание: Ако използвате Aspose.PSD.Adapters от https://releases.aspose.com/psd/net/, трябва допълнително да реферирате Aspose.Drawing и Aspose.Imaging от Nuget или локалните файлове.
- Добавете следния код:
// This code allows to load the specified formats | |
Aspose.PSD.Adapters.Imaging.EnableLoaders( | |
FileFormat.Svg, | |
FileFormat.Webp); | |
// This code allows you to export using adapters | |
Aspose.PSD.Adapters.Imaging.EnableExporters(); | |
// To work with adapters you need both Aspose.PSD and adaptee Licenses | |
var license = new Aspose.PSD.License(); | |
license.SetLicense(@"Aspose.PSD.NET.lic"); | |
var licImaging = new Aspose.Imaging.License(); | |
licImaging.SetLicense(@"Aspose.Imaging.NET.lic"); | |
// Aspose.Imaging loading and integration with PSD format will be provided seamless in this case. | |
using (var image = Image.Load(@"SomeFile.Webp")) | |
{ | |
// Saving in this example is provided by Aspose.PSD | |
image.Save(@"output.png", new PngOptions() { ColorType = Aspose.PSD.FileFormats.Png.PngColorType.TruecolorWithAlpha }); | |
} |
- Това е всичко, което ви трябва за използване на адаптерите
Експорт и Зареждане с допълнителни адаптер-специфични опции
В повечето случаи това е достатъчно за използване на първия пример, но в комплексни решения понякога е необходимо да се правят конверсии с допълнителни опции. Моля, проверете следния пример:
// Create new Imaging-only supported Image (Can be used SVG, or any other not-supported in PSD Format) | |
using (WebPImage webp = new WebPImage(300, 300, null)) | |
{ | |
// Use Aspose.Imaging API to Edit WEBP file with Imaging-specific features | |
var gr = new Aspose.Imaging.Graphics(webp); | |
gr.Clear(Aspose.Imaging.Color.Wheat); | |
gr.DrawArc( | |
new Aspose.Imaging.Pen(Aspose.Imaging.Color.Black, 5), | |
new Aspose.Imaging.Rectangle(50, 50, 200, 200), | |
0, | |
270); | |
// Then just use ToPsdImage() method and edit file like PSD with Photoshop-like features including layers, smart filters and smart objects. | |
using (var psdImage = webp.ToPsdImage()) | |
{ | |
psdImage.AddTextLayer("Some text", new Rectangle(100, 100, 100, 50)); | |
var hue = psdImage.AddHueSaturationAdjustmentLayer(); | |
hue.Hue = 130; | |
// Save the final PSD file using Aspose.PSD | |
psdImage.Save("output.psd"); | |
} | |
} |
На този етап вече не е необходимо да пишете допълнителен код. Адаптерите осигуряват безпроблемна интеграция с пълното богато API на Aspose.PSD и неговите адаптационни класове