Note sulla release di Aspose.PSD per .NET 21.11
Contents
[
Hide
]
Questa pagina contiene le note sulla release di Aspose.PSD per .NET 21.11
Chiave | Sommario | Categoria |
---|---|---|
PSDNET-767 | Eccezione durante l’aggiunta di un layer di testo esistente a un gruppo di layer | Bug |
PSDNET-988 | IndexOutOfRangeException su TextLayer.UpdateText | Bug |
PSDNET-989 | Le forme esportate hanno coordinate errate nel file di risultato | Bug |
PSDNET-1002 | Esportazione incorretta della forma vettoriale durante l’esportazione della cartella | Bug |
Cambiamenti nell’API pubblica
API aggiunte:
- Nessuna
API rimosse:
- Nessuna
Esempi di utilizzo:
PSDNET-767. Eccezione durante l’aggiunta di un layer di testo esistente a un gruppo di layer
string outputPsd = "out_dummy_group.psd";
var psdOptions = new PsdOptions()
{
Source = new StreamSource(new MemoryStream(), true),
ColorMode = ColorModes.Rgb,
ChannelsCount = 4,
ChannelBitsCount = 8,
CompressionMethod = CompressionMethod.RLE
};
using (PsdImage image = (PsdImage)Image.Create(psdOptions, 10, 15))
{
var group = image.AddLayerGroup("TestGroup", 0, true);
var layer = image.AddTextLayer("Text", Rectangle.FromLeftTopRightBottom(-2, 3, 14, 17));
group.AddLayer(layer);
image.Save(outputPsd);
}
PSDNET-988. IndexOutOfRangeException su TextLayer.UpdateText
string srcFile = "M1TTTT16062021001.psd";
string fontsFolder = "Fonts";
string outputPng = "out_M1TTTT16062021001.png";
FontSettings.SetFontsFolder(fontsFolder);
FontSettings.UpdateFonts();
string[] words = new[] { "Mamma", "Stacy" };
string[] fonts = new[] { "Caveat", "Gochi Hand", "Lobster", "Satisfy" };
using (var image = (PsdImage)Image.Load(srcFile))
{
foreach (var layer in image.Layers)
{
var txtLayer = layer as TextLayer;
if (txtLayer != null)
{
for (int w = 0; w < words.Length; w++)
{
for (int f = 0; f < fonts.Length; f++)
{
txtLayer.UpdateText(words[w]);
foreach (var txtItem in txtLayer.TextData.Items)
{
txtItem.Style.FontName = FontSettings.GetAdobeFontName(fonts[f]);
}
txtLayer.TextData.UpdateLayerData();
}
}
}
}
image.Save(outputPng, new PngOptions() { ColorType = PngColorType.TruecolorWithAlpha });
}
PSDNET-989. Le forme esportate hanno coordinate errate nel file di risultato
public void CreazioneEsempioPercorsoVettoriale()
{
string outputPsd = "outputPsd.psd";
using (var psdImage = (PsdImage)Image.Create(new PsdOptions() { Source = new Sources.StreamSource(new MemoryStream()), }, 500, 500))
{
FillLayer layer = FillLayer.CreateInstance(PSD.FileFormats.Psd.Layers.FillSettings.FillType.Color);
psdImage.AddLayer(layer);
VectorPath vectorPath = VectorDataProvider.CreateVectorPathForLayer(layer);
vectorPath.FillColor = Color.IndianRed;
PathShape shape = new PathShape();
shape.Points.Add(new BezierKnot(new PointF(50, 150), true));
shape.Points.Add(new BezierKnot(new PointF(100, 200), true));
shape.Points.Add(new BezierKnot(new PointF(0, 200), true));
vectorPath.Shapes.Add(shape);
VectorDataProvider.UpdateLayerFromVectorPath(layer, vectorPath, true);
psdImage.Save(outputPsd);
}
}
PSDNET-1002. Esportazione incorretta della forma vettoriale durante l’esportazione della cartella
string srcFile = "psdnet1002.psd";
string outputPng = "output.png";
using (var image = (PsdImage)Image.Load(srcFile))
{
image.Layers[4].Save(outputPng, new PngOptions() { ColorType = PngColorType.TruecolorWithAlpha });
}