BackgroundColorResource.DataSize
BackgroundColorResource.DataSize property
Haalt de gegevensgrootte van de bron op in bytes.
public override int DataSize { get; }
Eigendoms-waarde
De grootte van de brongegevens.
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
- class BackgroundColorResource
- naamruimte Aspose.PSD.FileFormats.Psd.Resources
- montage Aspose.PSD