BackgroundColorResource.DataSize
BackgroundColorResource.DataSize property
Kaynak veri boyutunu bayt cinsinden alır.
public override int DataSize { get; }
Mülk değeri
Kaynak veri boyutu.
Örnekler
Aşağıdaki örnek, BackgroundColorResource kaynağının desteğini göstermektedir.
[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'u güncelle
backgroundColorResource.Color = Color.DarkRed;
image.Save(outputFilePath);
}
Ayrıca bakınız
- class BackgroundColorResource
- ad alanı Aspose.PSD.FileFormats.Psd.Resources
- toplantı Aspose.PSD