TextLayer.Resize

TextLayer.Resize method

画像のサイズを変更します。デフォルトLeftTopToLeftTop使用されています.

public override void Resize(int newWidth, int newHeight, ResizeType resizeType)
パラメータタイプ説明
newWidthInt32新しい幅.
newHeightInt32新しい高さ.
resizeTypeResizeTypeリサイズ変換の種類ResizeType

次のコードは、サイズ変更のメカニズムを選択するパラメーターを指定した TextLayer.Resize 関数を示しています。

[C#]

string sourceFileName = "TextLayer.psd";
string outputFile = "TextLayerResized_output.psd";

using (PsdImage image = (PsdImage)Image.Load(sourceFileName, new PsdLoadOptions()))
{
    TextLayer textLayer = (TextLayer)image.Layers[1];

    // テキストレイヤーの新しいサイズを設定します
    const int NewWidth = 250;
    const int NewHeight = 250;

    // resize 関数がレイヤーのサイズを変更する方法のメカニズムを設定します (デフォルト値)
    ResizeType resizeType = ResizeType.NearestNeighbourResample;

    // ここを使用してテキスト レイヤーのサイズを変更する新しいメカニズム
    // レイヤーだけでなく、テキストレイヤーの変換マトリックスも変更されます
    textLayer.Resize(NewWidth, NewHeight, resizeType);

    image.Save(outputFile, new PsdOptions(image));
}

using (PsdImage image = (PsdImage)Image.Load(outputFile, new PsdLoadOptions()))
{
    TextLayer txtLayer = (TextLayer)image.Layers[1];

    // デルタの理由は異なるデフォルト フォントです
    if (txtLayer.TransformMatrix[4] >= 65 
        && txtLayer.TransformMatrix[4] <= 67
        && txtLayer.TransformMatrix[5] >= 234
        && txtLayer.TransformMatrix[5] <= 237)
    {
        // 大丈夫
    }
    else
    {
        throw new Exception("Location point is wrong");
    }
}

関連項目