התוסף Aspose.PSD עבור .NET 22.4 - הערות לשחרור
Contents
[
Hide
]
דף זה מכיל את הערות השחרור עבור Aspose.PSD עבור .NET 22.4
מפתח | סיכום | קטגוריה |
---|---|---|
PSDNET-261 | עיצוב שכבת הזריחה החיצונית | תכונה |
PSDNET-1123 | תמיכה ברישיון Sha256 | שיפור |
PSDNET-1107 | התיחום של טקסט בשורה מרובה אינו תואם לתוצאה ב-Photoshop | באג |
PSDNET-1113 | הבעיה בטעינת קובץ PSD על ניתוח נתוני משאבי טקסט | באג |
PSDNET-1129 | מיקום שגוי של התבנית המותאמת בעת שמירה בתור PSD | באג |
שינויים ב- API הציבוריים
APIs שנוספו:
- T:Aspose.PSD.FileFormats.Psd.JustificationMode
- F:Aspose.PSD.FileFormats.Psd.JustificationMode.Left
- F:Aspose.PSD.FileFormats.Psd.JustificationMode.Right
- F:Aspose.PSD.FileFormats.Psd.JustificationMode.Center
- M:Aspose.PSD.FileFormats.Psd.Layers.LayerEffects.BlendingOptions.AddOuterGlow
- T:Aspose.PSD.FileFormats.Psd.Layers.LayerEffects.OuterGlowEffect
- P:Aspose.PSD.FileFormats.Psd.Layers.LayerEffects.OuterGlowEffect.FillColor
- P:Aspose.PSD.FileFormats.Psd.Layers.LayerEffects.OuterGlowEffect.BlendMode
- P:Aspose.PSD.FileFormats.Psd.Layers.LayerEffects.OuterGlowEffect.IsVisible
- P:Aspose.PSD.FileFormats.Psd.Layers.LayerEffects.OuterGlowEffect.Opacity
- P:Aspose.PSD.FileFormats.Psd.Layers.LayerEffects.OuterGlowEffect.Intensity
- P:Aspose.PSD.FileFormats.Psd.Layers.LayerEffects.OuterGlowEffect.IsAntiAliasing
- P:Aspose.PSD.FileFormats.Psd.Layers.LayerEffects.OuterGlowEffect.Spread
- P:Aspose.PSD.FileFormats.Psd.Layers.LayerEffects.OuterGlowEffect.Size
- P:Aspose.PSD.FileFormats.Psd.Layers.LayerEffects.OuterGlowEffect.Noise
- P:Aspose.PSD.FileFormats.Psd.Layers.LayerEffects.OuterGlowEffect.IsSoftBlend
- P:Aspose.PSD.FileFormats.Psd.Layers.LayerEffects.OuterGlowEffect.Range
- P:Aspose.PSD.FileFormats.Psd.Layers.LayerEffects.OuterGlowEffect.Jitter
APIs שהוסרו:
- אין
דוגמאות שימוש:
PSDNET-261. עיצוב שכבת הזריחה החיצונית
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());
}
PSDNET-1107. התיחום של טקסט בשורה מרובה אינו תואם לתוצאה ב-Photoshop
string src = "source1107.psd";
string outputPsd = "output.psd";
string outputPng = "output.png";
using (var image = (PsdImage)Image.Load(src))
{
var txtLayer = image.AddTextLayer("Text line1\rText line2\rText line3", new Rectangle(200, 200, 500, 500));
var portions = txtLayer.TextData.Items;
portions[0].Paragraph.Justification = JustificationMode.Left;
portions[1].Paragraph.Justification = JustificationMode.Right;
portions[2].Paragraph.Justification = JustificationMode.Center;
txtLayer.TextData.UpdateLayerData();
image.Save(outputPsd);
image.Save(outputPng, new PngOptions());
}
PSDNET-1113. הבעיה בטעינת קובץ PSD על ניתוח נתוני משאבי טקסט
string sourceFile = "input.psd";
using (PsdImage image = (PsdImage) Image.Load(sourceFile))
{
// נטען בהצלחה.
}
PSDNET-1129. מיקום שגוי של התבנית המותאמת בעת שמירה בתור PSD
string sourceFile = "input_1129.psd";
string outputPsd = "out_psdnet1129.psd";
string outputPng = "out_psdnet1129.png";
using (PsdImage image = (PsdImage) Image.Load(sourceFile))
{
image.Save(outputPsd);
image.Save(outputPng, new PngOptions());
}