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);
}

関連項目