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