Aspose.PSD for .NET 20.5 - 发行说明
Contents
[
Hide
]
本页包含 Aspose.PSD for .NET 20.5 的发行说明
关键 | 摘要 | 类别 |
---|---|---|
PSDNET-595 | 支持图层组的图层蒙版 | 功能 |
PSDNET-201 | 支持文档转换进度 | 功能 |
PSDNET-275 | 支持 Nvrt 资源 (反相调整图层资源) | 功能 |
PSDNET-124 | 支持以每通道 16 位的形式保存灰度 ColorMode PSD 图像 | 功能 |
PSDNET-589 | 在 GitHub 上对示例进行重构 | 增强 |
PSDNET-587 | 通过 ITextPortion 进行文本对齐不适用于从右到左的语言。输出文件损坏。 | 错误 |
PSDNET-604 | 尝试打开具有 Lab Color 和每通道 8 位的特定 Psd 文件时出现异常 | 错误 |
PSDNET-598 | 修复以每通道 16 位的灰度 ColorMode 将 PSD 图像保存为每通道 8 位的灰度 PSD 格式时的问题 | 错误 |
PSDNET-599 | 修复以每通道 16 位的灰度 ColorMode 将 PSD 图像保存为每通道 16 位的 RGB PSD 格式时的问题 | 错误 |
公共 API 更改
已添加的 API:
- 无
已删除的 API:
- 无
使用示例:
PSDNET-595. 支持图层组的图层蒙版
string srcFile = "psdnet595.psd";
string outputPng = "output.png";
string outputPsd = "output.psd";
using (var input = (PsdImage)Image.Load(srcFile))
{
input.Save(outputPng, new PngOptions());
input.Save(outputPsd);
}
PSDNET-201. 支持文档转换进度
string sourceFilePath = "Apple.psd";
Stream outputStream = new MemoryStream();
ProgressEventHandler localProgressEventHandler = delegate(ProgressEventHandlerInfo progressInfo)
{
string message = string.Format(
"{0} {1}: {2} out of {3}",
progressInfo.Description,
progressInfo.EventType,
progressInfo.Value,
progressInfo.MaxValue);
Console.WriteLine(message);
};
Console.WriteLine("---------- 加载 Apple.psd ----------");
var loadOptions = new PsdLoadOptions() { ProgressEventHandler = localProgressEventHandler };
using (PsdImage image = (PsdImage)Image.Load(sourceFilePath, loadOptions))
{
Console.WriteLine("---------- 将 Apple.psd 保存为 PNG 格式 ----------");
image.Save(
outputStream,
new PngOptions()
{
ColorType = PngColorType.Truecolor, ProgressEventHandler = localProgressEventHandler
});
Console.WriteLine("---------- 将 Apple.psd 保存为 PSD 格式 ----------");
image.Save(
outputStream,
new PsdOptions()
{
ColorMode = ColorModes.Rgb,
ChannelsCount = 4,
ProgressEventHandler = localProgressEventHandler
});
}
PSDNET-275. 支持 Nvrt 资源 (反相调整图层资源)
using (var psdImage = (PsdImage)Image.Load("InvertAdjustmentLayer.psd"))
{
foreach (var layer in psdImage.Layers)
{
if (layer is InvertAdjustmentLayer)
{
foreach (var layerResource in layer.Resources)
{
if (layerResource is NvrtResource)
{
// 支持 NvrtResource。
var resource = (NvrtResource)layerResource;
break;
}
}
}
}
}
PSDNET-124. 修复以每通道 16 位的灰度 ColorMode 将 PSD 图像保存为每通道 8 位的灰度 PSD 格式
void SaveToPsdThenLoadAndSaveToPng(
string file,
ColorModes colorMode,
short channelBitsCount,
short channelsCount,
CompressionMethod compression,
int layerNumber)
{
string filePath = file + ".psd";
string postfix = colorMode.ToString() + channelBitsCount + "_" + channelsCount + "_" + compression;
string exportPath = @"Output\" + file + postfix + ".psd";
PsdOptions psdOptions = new PsdOptions()
{
ColorMode = colorMode,
ChannelBitsCount = channelBitsCount,
ChannelsCount = channelsCount,
CompressionMethod = compression
};
using (PsdImage image = (PsdImage)Image.Load(filePath))
{
RasterCachedImage raster = layerNumber >= 0 ? (RasterCachedImage)image.Layers[layerNumber] : image;
Aspose.PSD.Graphics graphics = new Graphics(raster);
int width = raster.Width;
int height = raster.Height;
Rectangle rect = new Rectangle(
width / 3,
height / 3,
width - (2 * (width / 3)) - 1,
height - (2 * (height / 3)) - 1);
graphics.DrawRectangle(new Aspose.PSD.Pen(Color.DarkGray, 1), rect);
image.Save(exportPath, psdOptions);
}
string pngExportPath = Path.ChangeExtension(exportPath, "png");
using (PsdImage image = (PsdImage)Image.Load(exportPath))
{
// 这里不应该有异常。
image.Save(pngExportPath, new PngOptions() { ColorType = PngColorType.GrayscaleWithAlpha });
}
}
SaveToPsdThenLoadAndSaveToPng("grayscale5x5", ColorModes.Cmyk, 16, 5, CompressionMethod.RLE, 0);
SaveToPsdThenLoadAndSaveToPng("argb16bit_5x5", ColorModes.Grayscale, 16, 2, CompressionMethod.RLE, 0);
SaveToPsdThenLoadAndSaveToPng("argb16bit_5x5_no_layers", ColorModes.Grayscale, 16, 2, CompressionMethod.RLE, -1);
SaveToPsdThenLoadAndSaveToPng("argb8bit_5x5", ColorModes.Grayscale, 16, 2, CompressionMethod.RLE, 0);
SaveToPsdThenLoadAndSaveToPng("argb8bit_5x5_no_layers", ColorModes.Grayscale, 16, 2, CompressionMethod.RLE, -1);
SaveToPsdThenLoadAndSaveToPng("cmyk16bit_5x5_no_layers", ColorModes.Grayscale, 16, 2, CompressionMethod.RLE, -1);
SaveToPsdThenLoadAndSaveToPng("index8bit_5x5", ColorModes.Grayscale, 16, 2, CompressionMethod.RLE, -1);
PSDNET-587. 通过 ITextPortion 进行文本对齐不适用于从右到左的语言。输出文件损坏。
string sourceFileName = "bidi.psd";
string outputFileName = "bidiOutput.psd";
using (PsdImage image = (PsdImage)Image.Load(sourceFileName))
{
var layer = (TextLayer)image.Layers[2];
var portions = layer.TextData.Items;
portions[0].Paragraph.Justification = 2;
layer.TextData.UpdateLayerData();
image.Save(outputFileName);
}
PSDNET-604. 尝试打开具有 Lab Color 和每通道 8 位的特定 Psd 文件时出现异常
string srcFile = "Untitled-1.psd";
string outputFilePsd = "output.psd";
using (var psdImage = (PsdImage)Image.Load(srcFile))
{
psdImage.Save(outputFilePsd);
}
// LAB 文件加载并保存而不会引发异常。
PSDNET-598. 修复以每通道 16 位的灰度 ColorMode 将 PSD 图像保存为每通道 8 位的灰度 PSD 格式
string sourceFileName = "grayscale16bit.psd";
string exportFileName = "grayscale16bit_output.psd";
PsdOptions psdOptions = new PsdOptions()
{
ColorMode = ColorModes.Grayscale,
ChannelBitsCount = 8,
ChannelsCount = 2
};
using (PsdImage image = (PsdImage)Image.Load(sourceFileName))
{
RasterCachedImage raster = image.Layers[0];
Aspose.PSD.Graphics graphics = new Graphics(raster);
int width = raster.Width;
int height = raster.Height;
Rectangle rect = new Rectangle(width / 3, height / 3, width - (2 * (width / 3)) - 1, height - (2 * (height / 3)) - 1);
graphics.DrawRectangle(new Aspose.PSD.Pen(Color.DarkGray, 1), rect);
image.Save(exportFileName, psdOptions);
}
string pngExportPath = Path.ChangeExtension(exportFileName, "png");
using (PsdImage image = (PsdImage)Image.Load(exportFileName))
{
// 这里不应该有异常。
image.Save(pngExportPath, new PngOptions() { ColorType = PngColorType.GrayscaleWithAlpha });
}
PSDNET-599. 修复以每通道 16 位的灰度 ColorMode 将 PSD 图像保存为每通道 16 位的 RGB PSD 格式