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} 중 {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);
}
// 예외를 throw하지 않고 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 형식으로 저장하는 문제 수정
string sourceFileName = "grayscale16bit.psd";
string exportFileName = "grayscale16bit_output.psd";
PsdOptions psdOptions = new PsdOptions()
{
ColorMode = ColorModes.Rgb,
ChannelBitsCount = 8,
ChannelsCount = 4
};
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 });
}