מפתח סיכום קטגוריה
PSDNET-952 הוספת נכס EffectType לממשק ILayerEffect תכונה
PSDNET-1146 ביצוע שינויים למחלקת ChannelData שדרוג
PSDNET-657 תיקון בפרטיות ההעמעה במקרה של DropShadowEffect באג
PSDNET-825 שגיאה בציור שכבת ההתארגנות דרך שכבה שקופה במקרה מסוים באג
PSDNET-1168 שיפור שיטת Colorize. Colorize אפור + קביעת צבע תקין כאשר הרוויה לא 100 באג
מאמר איך להריץ את Aspose.PSD ב-Docker תיעוד

שינויים ב-API הציבוריים

APIs חדשות:

APIs הוסרו:

דוגמאות שימוש:

PSDNET-657. עשייה של נכס הפריטיות לעבוד עם DropShadowEffect

string inputFile = "input.psd";
string outputImage20 = "outputImage20.png";
string outputImage200 = "outputImage200.png";

using (PsdImage psdImage = (PsdImage)Image.Load(inputFile, new LoadOptions()))
{
    Layer workLayer = psdImage.Layers[1];

    DropShadowEffect dropShadowEffect = workLayer.BlendingOptions.AddDropShadow();
    dropShadowEffect.Distance = 0;
    dropShadowEffect.Size = 8;

    // דוגמה עם פריטיות = 20
    dropShadowEffect.Opacity = 20;
    psdImage.Save(outputImage20, new PngOptions());

    // דוגמה עם פריטיות = 200
    dropShadowEffect.Opacity = 200;
    psdImage.Save(outputImage200, new PngOptions());
}

PSDNET-825. שגיאת ציור לא נכונה של שכבת ההתארגנות דרך שכבה שקופה במקרה מסוים

string sourceFile = "input_825.psd";
string outputPng = "out_psdnet825.png";

using (var psdImage = (PsdImage)Image.Load(sourceFile))
{
    foreach (var item in psdImage.Layers)
    {
        item.IsVisible = false;
    }
    var layer = psdImage.Layers[3];
    psdImage.Layers[1].IsVisible = true;
    psdImage.Layers[3].IsVisible = true;
    psdImage.Layers[4].IsVisible = true;
    psdImage.Layers[7].IsVisible = true;

    var width = layer.Width;
    var height = layer.Height;
    var layerBounds = new Rectangle(layer.Left, layer.Top, width, height);
    var bounds = new Rectangle(0, 0, width, height);
    var image = new PsdImage(bounds.Width, bounds.Height);

    image.SaveArgb32Pixels(bounds, psdImage.LoadArgb32Pixels(layerBounds));

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

PSDNET-952. הוספת נכס EffectType לממשק ILayerEffect

string inputFile = "input.psd";
string outputWithout = "outputWithout.png";
string outputWith = "outputWith.png";

using (PsdImage psdImage = (PsdImage)Image.Load(inputFile, new LoadOptions()))
{
    psdImage.Save(outputWithout, new PngOptions());

    Layer workLayer = psdImage.Layers[1];

    DropShadowEffect dropShadowEffect = workLayer.BlendingOptions.AddDropShadow();
    dropShadowEffect.Distance = 0;
    dropShadowEffect.Size = 8;
    dropShadowEffect.Opacity = 20;

    foreach (ILayerEffect iEffect in workLayer.BlendingOptions.Effects)
    {
        if (iEffect.EffectType == LayerEffectsTypes.DropShadow)
        {
            // זיהוי
            psdImage.Save(outputWith, new PngOptions());
        }
    }
}

PSDNET-1168. שיפור בשיטת Colorize. Colorize אפור + קביעת צבע תקין כאשר הרוויה לא 100

string srcFile = "Colorize.psd";            
string outputSimple = "output_simple.png";
string outputColorize = "output_colorize.png";

using (var psdImage = (PsdImage)Image.Load(srcFile))
{
    // תמונה ללא תכונת Colorize
    psdImage.Save(outputSimple, new PngOptions() { ColorType = PngColorType.TruecolorWithAlpha });
    
    // קביעת תכונת Colorize
    foreach (Layer layer in psdImage.Layers)
    {
        if (layer is HueSaturationLayer)
        {
            HueSaturationLayer hueSaturationLayer = (HueSaturationLayer)layer;
            hueSaturationLayer.Colorize = true;
            break;
        }
    }
    
    // תמונה עם תכונת Colorize
    psdImage.Save(outputColorize, new PngOptions() { ColorType = PngColorType.TruecolorWithAlpha });
}