浏览我们的产品

If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.

 

Aspose.PSD for .NET 22.3

下载  支持论坛 

文件详情

  • 下载:
  • 14
  • 文件大小:
  • 25.1 MB
  • Posted By:
  • Yaroslav.Lisovskyi
  • 浏览量:
  • 23
  • 添加日期:
  • 2/28/2022

文件详情

使用光栅图层蒙版保存 16 位 PSD

以前,带有光栅图层蒙版的 Photoshop® PSD 图像在保存到 16 位 PSD 图像时会丢弃蒙版。这个问题现在已经解决了。以下 C# 代码片段演示了如何保存 ChannelBitsCount 设置为 16 的 PSD:

string sourceFilePath = "OneRegularAndOneRegularWithMask.psd";
string outputFilePath = "out_OneRegularAndOneRegularWithMask.psd";

using (PsdImage image = (PsdImage)Image.Load(sourceFilePath))
    {
        image.Save(outputFilePath, new PsdOptions(image)
        {
            ChannelBitsCount = 16
        });
    }

配置图层组的打开/关闭状态

为图层组添加了属性“IsOpen”。您可以设置此属性以在启动时定义 Photoshop® 图层组的打开或关闭(最小化)状态。

有关此版本中的功能、增强和错误修复的完整列表,请访问 Aspose.PSD for .NET 22.3 - Release Notes

 简体中文