BackgroundColorResource.MinimalVersion

BackgroundColorResource.MinimalVersion property

Obtient la version PSD minimale requise.

public override int MinimalVersion { get; }

Valeur de la propriété

La version PSD minimale.

Exemples

L’exemple suivant illustre la prise en charge de la ressource 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;
        }
    }

    // met à jour BackgroundColorResource
    backgroundColorResource.Color = Color.DarkRed;

    image.Save(outputFilePath);
}

Voir également