Note sulla versione di Aspose.PSD per .NET 24.5
Contents
[
Hide
]
Questa pagina contiene le note sulla versione di Aspose.PSD per .NET 24.5
Chiave | Sommario | Categoria |
---|---|---|
PSDNET-1897 | [Formato AI] Aggiunta del supporto per la gestione dei file AI con intestazione EPSF | Funzionalità |
PSDNET-1755 | La semitrasparenza viene elaborata in modo errato anteprima file psd | Errore |
PSDNET-1942 | Rendering del layer di forma parzialmente errato | Errore |
PSDNET-1957 | Eccezione ogni volta che si salvano file PSD con dimensioni maggiori di 200 MB e dimensioni grandi | Errore |
PSDNET-1998 | Eccezione di salvataggio immagine fallito durante il salvataggio in PDF dopo l’aggiornamento da 23.7 a 24.3 | Errore |
PSDNET-2033 | Risolvere il problema nel metodo GetFontInfoRecords per i caratteri cinesi | Errore |
Cambiamenti nell’API pubblica
API Aggiunte:
- P:Aspose.PSD.ImageOptions.PsdOptions.BackgroundContents
- P:Aspose.PSD.FileFormats.Ai.AiLayerSection.HasMultiLayerMasks
- P:Aspose.PSD.FileFormats.Ai.AiLayerSection.ColorIndex
API Rimosse:
- Nessuna
Esempi di utilizzo:
PSDNET-1755. La semitrasparenza viene elaborata in modo errato nell’anteprima del file psd
// La semitrasparenza viene elaborata in modo errato nell'anteprima del file psd.
// BackgroundContents assegnato a Bianco. Le aree trasparenti dovrebbero avere il colore bianco.
string sourceFile = Path.Combine(baseFolder, "frog_nosymb.psd");
string outputFile = Path.Combine(outputFolder, "frog_nosymb_backgroundcontents_output.psd");
using (PsdImage psdImage = (PsdImage)Image.Load(sourceFile))
{
RawColor backgroundColor = new RawColor(PixelDataFormat.Rgb32Bpp);
int argbValue = 255 << 24 | 255 << 16 | 255 << 8 | 255;
backgroundColor.SetAsInt(argbValue); // Bianco
PsdOptions psdOptions = new PsdOptions(psdImage)
{
ColorMode = ColorModes.Rgb,
CompressionMethod = CompressionMethod.RLE,
ChannelsCount = 4,
BackgroundContents = backgroundColor,
};
psdImage.Save(outputFile, psdOptions);
}
PSDNET-1897. [Formato AI] Aggiunta del supporto per la gestione dei file AI con intestazione EPSF
string sourceFile = Path.Combine(baseFolder, "example.ai");
string outputFilePath = Path.Combine(outputFolder, "example.png");
void AssertAreEqual(object expected, object actual)
{
if (!object.Equals(expected, actual))
{
throw new Exception("Gli oggetti non sono uguali.");
}
}
using (AiImage image = (AiImage)Image.Load(sourceFile))
{
AssertAreEqual(image.Layers.Length, 2);
AssertAreEqual(image.Layers[0].HasMultiLayerMasks, false);
AssertAreEqual(image.Layers[0].ColorIndex, -1);
AssertAreEqual(image.Layers[1].HasMultiLayerMasks, false);
AssertAreEqual(image.Layers[1].ColorIndex, -1);
image.Save(outputFilePath, new PngOptions());
}
PSDNET-1942. Rendering del layer di forma parzialmente errato
string sourceFile = Path.Combine(baseFolder, "ShapeLayerTest.psd");
string outputFile = Path.Combine(outputFolder, "ShapeLayerTest_output.psd");
const int ImgToPsdRatio = 256 * 65535;
using (var im = (PsdImage)Image.Load(sourceFile))
{
ShapeLayer shapeLayer = (ShapeLayer)im.Layers[2];
IPath path = shapeLayer.Path;
IPathShape[] pathShapes = path.GetItems();
List<BezierKnotRecord> knotsList = new List<BezierKnotRecord>();
foreach (IPathShape pathShape in pathShapes)
{
BezierKnotRecord[] knots = pathShape.GetItems();
knotsList.AddRange(knots);
}
// Cambia le proprietà del layer
var newShape = new PathShape();
BezierKnotRecord[] bezierKnots = new BezierKnotRecord[]
{
new BezierKnotRecord()
{
IsLinked = true,
Points = new Point[3]
{
PointFToResourcePoint(
new PointF(100, 100),
shapeLayer.Container.Size),
PointFToResourcePoint(
new PointF(100, 100),
shapeLayer.Container.Size),
PointFToResourcePoint(
new PointF(100, 100),
shapeLayer.Container.Size),
},
},
new BezierKnotRecord()
{
IsLinked = true,
Points = new Point[3]
{
PointFToResourcePoint(
new PointF(50, 490),
shapeLayer.Container.Size),
PointFToResourcePoint(
new PointF(100, 490),
shapeLayer.Container.Size), // Punto di ancoraggio
PointFToResourcePoint(
new PointF(150, 490),
shapeLayer.Container.Size),
},
},
new BezierKnotRecord()
{
IsLinked = true,
Points = new Point[3]
{
PointFToResourcePoint(
new PointF(490, 150),
shapeLayer.Container.Size),
PointFToResourcePoint(
new PointF(490, 50),
shapeLayer.Container.Size),
PointFToResourcePoint(
new PointF(490, 20),
shapeLayer.Container.Size),
},
},
};
newShape.SetItems(bezierKnots);
List<IPathShape> newShapes = new List<IPathShape>(pathShapes);
newShapes.Add(newShape);
IPathShape[] pathShapeNew = newShapes.ToArray();
path.SetItems(pathShapeNew);
shapeLayer.Update();
im.Save(outputFile, new PsdOptions());
}
using (var im = (PsdImage)Image.Load(outputFile))
{
ShapeLayer shapeLayer = (ShapeLayer)im.Layers[2];
IPath path = shapeLayer.Path;
IPathShape[] pathShapes = path.GetItems();
List<BezierKnotRecord> knotsList = new List<BezierKnotRecord>();
foreach (IPathShape pathShape in pathShapes)
{
BezierKnotRecord[] knots = pathShape.GetItems();
knotsList.AddRange(knots);
}
AssertAreEqual(3, pathShapes.Length);
AssertAreEqual(42, shapeLayer.Left);
AssertAreEqual(14, shapeLayer.Top);
AssertAreEqual(1600, shapeLayer.Bounds.Width);
AssertAreEqual(1086, shapeLayer.Bounds.Height);
}
Point PointFToResourcePoint(PointF point, Size imageSize)
{
return new Point(
(int)Math.Round(point.Y * (ImgToPsdRatio / imageSize.Height)),
(int)Math.Round(point.X * (ImgToPsdRatio / imageSize.Width)));
}
void AssertAreEqual(object expected, object actual, string message = null)
{
if (!object.Equals(expected, actual))
{
throw new Exception(message ?? "Gli oggetti non sono uguali.");
}
}
PSDNET-1957. Eccezione ogni volta che si salvano file PSD con dimensioni maggiori di 200 MB e dimensioni grandi
string sourceFile = Path.Combine(baseFolder, "bigfile.psd");
string outputFile = Path.Combine(outputFolder, "output_raw.psd");
PsdLoadOptions loadOptions = new PsdLoadOptions()
{
LoadEffectsResource = true,
UseDiskForLoadEffectsResource = true
};
using (var psdImage = (PsdImage)Image.Load(sourceFile, loadOptions))
{
// Non dovrebbero esserci errori qui
psdImage.Save(outputFile, new PsdOptions { CompressionMethod = CompressionMethod.RLE });
}
PSDNET-1998. Eccezione di salvataggio immagine fallita durante il salvataggio in PDF dopo l’aggiornamento da 23.7 a 24.3
string sourceFile = Path.Combine(baseFolder, "CVFlor.psd");
string outputFile = Path.Combine(outputFolder, "_export.pdf");
using (var psdImage = (PsdImage)Image.Load(sourceFile))
{
PdfOptions saveOptions = new PdfOptions();
saveOptions.PdfCoreOptions = new PdfCoreOptions();
psdImage.Save(outputFile, saveOptions);
}
PSDNET-2033. Risolvere il problema nel metodo GetFontInfoRecords per i caratteri cinesi
var fontFolder = Path.Combine(baseFolder, "Font");
string sourceFile = Path.Combine(baseFolder, "bd-worlds-best-pink.psd");
PsdLoadOptions psdLoadOptions = new PsdLoadOptions();
psdLoadOptions.LoadEffectsResource = true;
psdLoadOptions.AllowWarpRepaint = true;
try
{
FontSettings.SetFontsFolders(new string[] { fontFolder }, true);
FontSettings.UpdateFonts();
using (PsdImage image = (PsdImage)PsdImage.Load(sourceFile, psdLoadOptions))
{
foreach (var layer in image.Layers)
{
var textLayer = layer as TextLayer;
if (textLayer != null)
{
if (textLayer.Text == "best")
{
// Senza questa correzione ci sarà un'eccezione a causa del carattere cinese.
textLayer.UpdateText("SUCESSO");
}
}
}
}
}
finally
{
FontSettings.Reset();
FontSettings.UpdateFonts();
}