یادداشت‌های نسخه Aspose.PSD برای .NET 19.3

کلید خلاصه دسته‌بندی
PSDNET-104 نمایش لایه‌های متنی با ماتریس تبدیل دوراندار ویژگی
PSDNET-96 پیاده‌سازی اثر Stroke با پر کردن رنگ برای صادرات ویژگی
PSDNET-112 تبدیل‌کننده‌های InnerData لایه‌هایی با ماسک برداری را خراب می‌کنند باگ
PSDNET-113 به‌روزرسانی لایه متنی برای تصویر PSD خطا ایجاد می‌کند هنگام باز شدن در فتوشاپ باگ

تغییرات API عمومی

API‌های اضافه شده:

  • هیچ

API‌های حذف شده:

  • هیچ

نمونه‌های استفاده:

PSDNET-104. نمایش لایه‌های متنی با ماتریس تبدیل دوراندار

 string sourceFileName = "TransformedText.psd";

string exportPath = "TransformedTextExport.psd";

string exportPathPng = "TransformedTextExport.png";

var im = (PsdImage) Image.Load(sourceFileName);

using(im) {

 im.Save(exportPath);

 im.Save(exportPathPng, new PngOptions() {

  ColorType = PngColorType.TruecolorWithAlpha

 });

}      

PSDNET-96. پیاده‌سازی اثر Stroke با پر کردن رنگ برای صادرات

  // پیاده‌سازی اثر Stroke با پر کردن رنگ برای صادرات

 string sourceFileName = "StrokeComplex.psd";

 string exportPath = "StrokeComplexRendering.psd";

 string exportPathPng = "StrokeComplexRendering.png";

 var loadOptions = new PsdLoadOptions() {

  LoadEffectsResource = true

 };

 using(var im = (PsdImage) Image.Load(sourceFileName, loadOptions)) {

  for (int i = 0; i < im.Layers.Length; i++) {

   var effect = (StrokeEffect) im.Layers[i].BlendingOptions.Effects[0];

   var settings = (ColorFillSettings) effect.FillSettings;

   settings.Color = Color.DeepPink;

  }

  // ذخیره psd

  im.Save(exportPath, new PsdOptions());

  // ذخیره png

  im.Save(exportPathPng, new PngOptions() {

   ColorType = PngColorType.TruecolorWithAlpha

  });

 }         

PSDNET-112. تبدیل‌کننده‌های InnerData لایه‌هایی با ماسک برداری را خراب می‌کنند

 // تبدیل‌کننده‌های InnerData لایه‌هایی با ماسک برداری را خراب می‌کنند

var sourceFile = "1.psd";

var pngPath = "RotateFlipTest2617.png";

var psdPath = "RotateFlipTest2617.psd";

var flipType = RotateFlipType.Rotate270FlipXY;

using(var im = (PsdImage)(Image.Load(sourceFile))) {

 im.RotateFlip(flipType);

 im.Save(pngPath, new PngOptions() {

  ColorType = PngColorType.TruecolorWithAlpha

 });

 im.Save(psdPath);

}

PSDNET-113. به‌روزرسانی لایه متنی برای تصویر PSD خطا ایجاد می‌کند هنگام باز شدن در فتوشاپ

 string sourceFileName = "Test.psd";

string exportPath = "Result.psd";

using(Image image = Image.Load(sourceFileName)) {

 if (!(image is PsdImage)) {

  return;

 }

 PsdImage psdImage = (PsdImage) image;

 Layer[] layers = psdImage.Layers;

 for (int index = layers.Length - 1; index >= 0; index--) {

  Layer layer = layers[index];

  if (!(layer is TextLayer)) {

   continue;

  }

  TextLayer textLayer = (TextLayer) layer;

  textLayer.UpdateText("\\()");

 }

 PsdOptions imageOptions = new PsdOptions(psdImage);

 psdImage.Save(exportPath, imageOptions);

}

// فایل باید بدون اشکال باز شده و قابل خواندن برای فتوشاپ باشد

using(Image image = Image.Load(exportPath)) {}