BorderInformationResource.MinimalVersion

BorderInformationResource.MinimalVersion property

Получает минимальную требуемую версию PSD.

public override int MinimalVersion { get; }

Стоимость имущества

Минимальная версия PSD.

Примеры

В следующем примере демонстрируется поддержка ресурса BorderInformationResource.

[C#]

string sourceFilePath = "input.psd";
string outputFilePath = "output.psd";

using (var image = (PsdImage)Image.Load(sourceFilePath))
{
    ResourceBlock[] imageResources = image.ImageResources;
    BorderInformationResource borderInfoResource = null;
    foreach (var imageResource in imageResources)
    {
        if (imageResource is BorderInformationResource)
        {
            borderInfoResource = (BorderInformationResource)imageResource;
            break;
        }
    }

    // обновить BorderInformationResource
    borderInfoResource.Width = 0.1;
    borderInfoResource.Unit = PhysicalUnit.Inches;

    image.Save(outputFilePath);
}

Смотрите также