BackgroundColorResource.MinimalVersion

BackgroundColorResource.MinimalVersion property

필요한 최소 PSD 버전을 가져옵니다.

public override int MinimalVersion { get; }

자산 가치

최소 PSD 버전.

다음 예제는 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);
}

또한보십시오