BackgroundColorResource.MinimalVersion

BackgroundColorResource.MinimalVersion property

Gets the minimal required PSD version.

public override int MinimalVersion { get; }

Property Value

The minimal PSD version.

Examples

The following example demonstrates the support of BackgroundColorResource resource.

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

    // update BackgroundColorResource
    backgroundColorResource.Color = Color.DarkRed;

    image.Save(outputFilePath);
}

See Also