Aspose.PSD for .NET 24.7 - Release Notes
Contents
[
Hide
]
This page contains release notes for Aspose.PSD for .NET 24.7
Key | Summary | Category |
---|---|---|
PSDNET-1029 | “Image loading failed.” exception when open AI document | Bug |
PSDNET-2022 | Text rendered incorrectly in output PDF files | Bug |
PSDNET-2061 | Fix ImageSaveException: Image export failed for the given file on Linux | Bug |
PSDNET-2080 | Fix fonts loading when using Aspose.Drawing | Bug |
PSDNET-2085 | ‘Arithmetic operation resulted in an overflow’ when creating smart object layer using large JPEG | Bug |
PSDNET-2100 | The AI file can not be converted into a JPG file | Bug |
Public API Changes
Added APIs:
- None
Removed APIs:
- None
Usage examples:
PSDNET-1029. “Image loading failed.” exception when open AI document
string sourceFile = Path.Combine(baseFolder, "[SA]_ID_card_template.ai");
string outputFile = Path.Combine(outputFolder, "[SA]_ID_card_template.png");
using (AiImage image = (AiImage)Image.Load(sourceFile))
{
image.Save(outputFile, new PngOptions());
}
PSDNET-2022. Text rendered incorrectly in output PDF files
string src = Path.Combine(baseFolder, "CVFlor.psd");
string output = Path.Combine(outputFolder, "output.pdf");
using (var psdImage = (PsdImage)Image.Load(src))
{
PdfOptions saveOptions = new PdfOptions();
saveOptions.PdfCoreOptions = new PdfCoreOptions();
psdImage.Save(output, saveOptions);
}
PSDNET-2061. Fix ImageSaveException: Image export failed for the given file on Linux
string sourceFile = Path.Combine(baseFolder, "Bed_Roll-Sticker4_1.psd");
string outputFile = Path.Combine(outputFolder, "output.jpg");
using (var psdImage = (PsdImage)Image.Load(sourceFile, new PsdLoadOptions() { LoadEffectsResource = true }))
{
var saveOptions = new JpegOptions() { Quality = 70 };
psdImage.Save(outputFile, saveOptions);
}
PSDNET-2080. Fix fonts loading when using Aspose.Drawing
using (var installedFonts = new System.Drawing.Text.InstalledFontCollection())
{
Console.WriteLine("- Before update. Installed fonts count: " + installedFonts.Families.Length);
Console.WriteLine("- Platform: " + Environment.OSVersion.Platform.ToString());
Console.WriteLine("- Refresh the font cache by trying to get the Adobe font name for 'Arial': "
FontSettings.GetAdobeFontName("Arial"));
Console.WriteLine("- After update. Installed fonts count: " + installedFonts.Families.Length);
Assert.Greater(installedFonts.Families.Length, 1);
}
PSDNET-2085. ‘Arithmetic operation resulted in an overflow’ when creating smart object layer using large JPEG
string srcFile = Path.Combine(baseFolder, "source.psd");
string imageJpg = Path.Combine(baseFolder, "test.jpg");
using (var image = (PsdImage)Image.Load(srcFile, new PsdLoadOptions { DataRecoveryMode = DataRecoveryMode.MaximalRecover }))
{
using (var stream = new FileStream(imageJpg, FileMode.Open))
{
var addedLayer = new SmartObjectLayer(stream);
addedLayer.Name = "Test Layer";
image.AddLayer(addedLayer);
}
}
PSDNET-2100. The AI file can not be converted into a JPG file
string sourceFile = Path.Combine(baseFolder, "aaa.ai");
string outputFile = Path.Combine(outputFolder, "aaa.png");
using (AiImage image = (AiImage)Image.Load(sourceFile))
{
image.Save(outputFile, new PngOptions());
}