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);
}

也可以看看