راهنمای شروع سریع Aspose.PSD Adapters برای .NET

استفاده ساده

Aspose.PSD Adapters برای .NET، بسته‌های ویژه‌ای از Nuget هستند که به شما امکان می‌دهند تا کد ادغام با دیگر محصولات Aspose را کمتر بنویسید.

برای شروع استفاده از Aspose.PSD Adapters، لطفاً دستورالعمل‌های زیر را بررسی کنید:

  1. از Nuget به Aspose.PSD.Adapters.Imaging مراجعه کنید یا آن‌ها را از صفحه منتشرکننده Aspose دانلود کنید (در حال حاضر آداپترها در این نسخه اصلی آرتیفکت منتشرشده هستند) به پروژه خود مراجعه کنید منابع ضروری
  • توجه: اگر از https://releases.aspose.com/psd/net/ برای استفاده از Aspose.PSD.Adapters استفاده می‌کنید، باید علاوه بر آن Aspose.Drawing و Aspose.Imaging را از نوگت یا فایل‌های محلی مراجعه کنید.
  1. به کد زیر اضافه کنید:
// 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 });
}
  1. تمامی نیازهای شما برای استفاده از آداپترها همین است

صدور و بارگذاری با گزینه‌های اضافی Adaptee-ویژه

در اکثر موارد کافی است از مثال اول استفاده کنید، اما در راه‌حل‌های پیچیده بعضی اوقات نیاز به تبدیل با گزینه‌های اضافی وجود دارد. لطفاً مثال زیر را بررسی کنید:

// 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 و Adaptees آن فراهم می‌کنند.