BackgroundColorResource.Color
BackgroundColorResource.Color property
Ruft die Hintergrundfarbe ab oder legt sie fest.
public Color Color { get; set; }
Beispiele
Das folgende Beispiel veranschaulicht die Unterstützung der BackgroundColorResource-Ressource.
[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 aktualisieren
backgroundColorResource.Color = Color.DarkRed;
image.Save(outputFilePath);
}
Siehe auch
- struct Color
- class BackgroundColorResource
- namensraum Aspose.PSD.FileFormats.Psd.Resources
- Montage Aspose.PSD