BackgroundColorResource.DataSize
BackgroundColorResource.DataSize property
Ruft die Ressourcendatengröße in Byte ab.
public override int DataSize { get; }
Eigentumswert
Die Größe der Ressourcendaten.
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
- class BackgroundColorResource
- namensraum Aspose.PSD.FileFormats.Psd.Resources
- Montage Aspose.PSD