BackgroundColorResource.Color
BackgroundColorResource.Color property
获取或设置背景颜色。
public Color Color { get; set; }
例子
以下示例演示了 BackgroundColorResource 资源的支持。
[C#]
string sourceFilePath = "input.psd";
string outputFilePath = "output.psd";
using (var image = (PsdImage)Image.Load(sourceFilePath))
{
ResourceBlock[] imageResources = image.ImageResources;
BackgroundColorResource backgroundColorResource = null;
foreach (var imageResource in imageResources)
{
if (imageResource is BackgroundColorResource)
{
backgroundColorResource = (BackgroundColorResource)imageResource;
break;
}
}
// 更新 BackgroundColorResource
backgroundColorResource.Color = Color.DarkRed;
image.Save(outputFilePath);
}
也可以看看
- struct Color
- class BackgroundColorResource
- 命名空间 Aspose.PSD.FileFormats.Psd.Resources
- 部件 Aspose.PSD