BackgroundColorResource.Color
BackgroundColorResource.Color property
Krijgt of stelt de achtergrondkleur in.
public Color Color { get; set; }
Voorbeelden
In het volgende voorbeeld wordt de ondersteuning van de BackgroundColorResource-resource gedemonstreerd.
[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);
}
Zie ook
- struct Color
- class BackgroundColorResource
- naamruimte Aspose.PSD.FileFormats.Psd.Resources
- montage Aspose.PSD