Class VsmsResource

VsmsResource class

クラス VsmsResource. このリソースには、ベクター レイヤー mask に関する情報が含まれています。

public class VsmsResource : VectorPathDataResource

コンストラクター

名前説明
VsmsResource()の新しいインスタンスを初期化しますVsmsResourceclass.
VsmsResource(byte[])の新しいインスタンスを初期化しますVsmsResourceclass.

プロパティ

名前説明
IsDisabled { get; set; }このインスタンスが無効かどうかを示す値を取得または設定します。
IsInverted { get; set; }このインスタンスが反転されているかどうかを示す値を取得または設定します.
IsNotLinked { get; set; }このインスタンスがリンクされていないかどうかを示す値を取得または設定します。
override Key { get; }レイヤ リソース キーを取得します。
override Length { get; }層リソースの長さをバイト単位で取得します。
Paths { get; set; }パス レコードを取得または設定します。
override PsdVersion { get; }psd バージョンを取得します。
override Signature { get; }署名を取得します。
Version { get; set; }バージョンを取得または設定します。

メソッド

名前説明
override Save(StreamContainer, int)指定したストリーム コンテナーにリソースを保存します。
override ToString()を返しますStringこのインスタンスを表す.

田畑

名前説明
const TypeToolKeyタイプ ツール情報キー。

次の例は、VsmsResource リソースの読み込みのサポートを示しています。パスの編集方法。

[C#]

[Test]
public void TestPsdNet140()
{
    // VsmsResource のサポート
    string sourceFileName = "EmptyRectangle.psd";
    string exportPath = "EmptyRectangle_changed.psd";
    var im = (PsdImage)Image.Load(sourceFileName);
    using (im)
    {
        var resource = GetVsmsResource(im);
        // 読む
        if (resource.IsDisabled != false ||
            resource.IsInverted != false ||
            resource.IsNotLinked != false ||
            resource.Paths.Length != 7 ||
            resource.Paths[0].Type != VectorPathType.PathFillRuleRecord ||
            resource.Paths[1].Type != VectorPathType.InitialFillRuleRecord ||
            resource.Paths[2].Type != VectorPathType.ClosedSubpathLengthRecord ||
            resource.Paths[3].Type != VectorPathType.ClosedSubpathBezierKnotUnlinked ||
            resource.Paths[4].Type != VectorPathType.ClosedSubpathBezierKnotUnlinked ||
            resource.Paths[5].Type != VectorPathType.ClosedSubpathBezierKnotUnlinked ||
            resource.Paths[6].Type != VectorPathType.ClosedSubpathBezierKnotUnlinked)
        {
            throw new Exception("VsmsResource was read wrong");
        }

        var pathFillRule = (PathFillRuleRecord)resource.Paths[0];
        var initialFillRule = (InitialFillRuleRecord)resource.Paths[1];
        var subpathLength = (LengthRecord)resource.Paths[2];

        // パス塗りつぶしルールには追加情報は含まれていません
        if (pathFillRule.Type != VectorPathType.PathFillRuleRecord ||
        initialFillRule.Type != VectorPathType.InitialFillRuleRecord ||
        initialFillRule.IsFillStartsWithAllPixels != false ||
        subpathLength.Type != VectorPathType.ClosedSubpathLengthRecord ||
        subpathLength.IsClosed != true ||
        subpathLength.IsOpen != false)
        {
            throw new Exception("VsmsResource paths were read wrong");
        }

        // 編集中
        resource.IsDisabled = true;
        resource.IsInverted = true;
        resource.IsNotLinked = true;
        var bezierKnot = (BezierKnotRecord)resource.Paths[3];
        bezierKnot.Points[0] = new Point(0, 0);
        bezierKnot = (BezierKnotRecord)resource.Paths[4];
        bezierKnot.Points[0] = new Point(8039798, 10905191);
        initialFillRule.IsFillStartsWithAllPixels = true;
        subpathLength.IsClosed = false;
        im.Save(exportPath);
    }
}

private VsmsResource GetVsmsResource(PsdImage image)
{
    var layer = image.Layers[1];
    VsmsResource resource = null;
    var resources = layer.Resources;
    for (int i = 0; i < resources.Length; i++)
    {
        if (resources[i] is VsmsResource)
        {
            resource = (VsmsResource)resources[i];
            break;
        }
    }
    if (resource == null)
    {
        throw new Exception("VsmsResource not found");
    }
    return resource;
}

関連項目