دليل بداية سريعة لمحولات Aspose.PSD لـ .NET

الاستخدام البسيط

محولات Aspose.PSD لـ .NET هي حزم Nuget الخاصة التي تتيح لك كتابة رمز التكامل مع منتجات Aspose الأخرى بشكل أقل.

لبدء استخدام محولات Aspose.PSD ، يرجى التحقق من التعليمات التالية:

  1. راجع Aspose.PSD.Adapters.Imaging من Nuget أو قم بتنزيلها من صفحة الإصدارات التابعة لـ Aspose (المحولات مضمنة في فندق الإصدار الرئيسي في هذا الوقت) إلى مشروعك المراجع الضرورية
  • يرجى ملاحظة: إذا كنت تستخدم Aspose.PSD.Adapters من https://releases.aspose.com/psd/net/ فيجب عليك مرجعة 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 الخاصة بها.