Aspose.PSD .NET的适配器快速入门指南

简单使用

Aspose.PSD .NET的适配器是一种特殊的Nuget包,可以让您更轻松地编写与其他Aspose产品集成的代码。

要开始使用Aspose.PSD适配器,请查看以下说明:

  1. Nuget引用Aspose.PSD.Adapters.Imaging,或者从Aspose发布页下载它们(适配器目前包含在主发布工件中) 必要的引用
  • 请注意:如果您从https://releases.aspose.com/psd/net/使用Aspose.PSD.Adapters,则需要额外引用Nuget或本地文件中的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");
}
}

在这一点上,您无需编写任何额外的代码。适配器提供与Aspose.PSD及其Adaptees的完整丰富API进行无缝集成。