Jelajahi Produk kami

If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.

 

Aspose.PSD untuk .NET 22.4

Unduh  Forum Dukungan 

Detail File

  • Unduhan:
  • 3
  • Ukuran File:
  • 25.3 MB
  • Posted By:
  • Yaroslav.Lisovskyi
  • Tampilan:
  • 9
  • Tanggal Ditambahkan:
  • : 1 weeks ago [4/4/2022]

Catatan Rilis

Keterangan

Ini berisi Aspose.PSD untuk .NET 22.4 rilis.

Detail File

Dukungan SHA256

Menambahkan dukungan Lisensi SHA256.

Rendering Efek Lapisan Cahaya Luar

Versi API manipulasi format Photoshop ini menambahkan kemampuan untuk membuat efek cahaya saat memproses gambar.

Cuplikan kode C# berikut menunjukkan bagaimana Anda dapat mengonfigurasi nilai efek untuk range, spread, opacity, dan blend mode melalui API:

string src = "GreenLayer.psd";
string output = "output261.png";

using (var image = (PsdImage)Image.Load(src))
{
    OuterGlowEffect effect = image.Layers[1].BlendingOptions.AddOuterGlow();
    effect.Range = 10;
    effect.Spread = 10;
    ((IColorFillSettings)effect.FillColor).Color = Color.Red;
    effect.Opacity = 128;
    effect.BlendMode = BlendMode.Normal;

    image.Save(output, new PngOptions());
}

Untuk daftar lengkap fitur, peningkatan, dan perbaikan bug dalam rilis ini, kunjungi Aspose.PSD for .NET 22.4 - Release Notes.

 Indonesia