BorderInformationResource.Width

BorderInformationResource.Width property

सीमा चौड़ाई प्राप्त या सेट करता है।

public double Width { get; set; }

उदाहरण

निम्न उदाहरण 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;
        }
    }

    // अद्यतन सीमा सूचना संसाधन
    borderInfoResource.Width = 0.1;
    borderInfoResource.Unit = PhysicalUnit.Inches;

    image.Save(outputFilePath);
}

यह सभी देखें