Hướng dẫn khởi đầu nhanh về Aspose.PSD Adapters cho .NET

Sử dụng đơn giản

Aspose.PSD Adapters cho .NET là các Gói Nuget đặc biệt cho phép bạn viết mã tích hợp với các Sản phẩm Aspose khác một cách đơn giản hơn.

Để bắt đầu sử dụng Aspose.PSD Adapters, vui lòng kiểm tra hướng dẫn sau:

  1. Tham chiếu Aspose.PSD.Adapters.Imaging từ Nuget hoặc tải chúng từ Trang Phát hành của Aspose (Các Adapters được bao gồm trong bản phát hành chính ở thời điểm hiện tại) vào dự án của bạn Tham chiếu cần thiết
  • Lưu ý: Nếu bạn đang sử dụng Aspose.PSD.Adapters từ https://releases.aspose.com/psd/net/, bạn cần bổ sung tham chiếu Aspose.Drawing và Aspose.Imaging từ Nuget hoặc các tệp cục bộ.
  1. Thêm vào mã sau:
// 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. Đó là tất cả những gì bạn cần để sử dụng adapters

Xuất và Tải với các tùy chọn cụ thể của Adaptee

Trong hầu hết các trường hợp, việc sử dụng ví dụ đầu tiên là đủ, nhưng trong các giải pháp phức tạp đôi khi cần phải thực hiện chuyển đổi với các tùy chọn bổ sung. Vui lòng xem ví dụ sau:

// 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");
}
}

Ở thời điểm này, bạn không cần phải viết thêm bất kỳ mã nào. Adapters cung cấp tích hợp mượt mà với API phong phú đầy đủ của Aspose.PSD và các Adaptees của nó