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