BackgroundColorResource.DataSize
BackgroundColorResource.DataSize property
리소스 데이터 크기를 바이트 단위로 가져옵니다.
public override int DataSize { get; }
자산 가치
리소스 데이터 크기입니다.
예
다음 예제는 BackgroundColorResource 자원의 지원을 보여줍니다.
[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 업데이트
backgroundColorResource.Color = Color.DarkRed;
image.Save(outputFilePath);
}