1

私は、Adobe acrobat の Javascript プラグインに取り組んでいます。目標は、各フィールドにバージョン固有のテキストを含むフィールドを追加することです。しわは、ページのサイズが異なり、縦向きのものと横向きのものがあるため、それぞれに適切な向きと位置にスタンプを配置する必要があります。

これで大部分は解決しましたが、問題が 1 つあります。最終的な向きで PDF ページを (CAD プログラムから) 作成すると、私のコード (以下) は正しく動作します。ただし、ページを横向きに作成し、Adobe Acrobat の「ページの回転」機能を使用して縦向きにすると、スタンプは正しい位置に表示されますが、必要な向きから 90 度ずれています。(バウンディング ボックスも 90 度ずれているため、テキストが非常に小さくなっています。)

ページがこのように回転されているかどうかを検出して、フィールドの向きを正しく設定するにはどうすればよいですか。または、回転の影響を受けない別の座標位置を使用してフィールドを指定できますか?

これまでの私のコードは次のとおりです。

function versionStamp()
{
    var oCurrentDate = new Date();
    var inch = 72;

    var newVersionLetter = app.response({
        cQuestion: "What is the new version letter?",
        cTitle: "Enter Version Letter",
        cDefault: " ",
        cLabel: "Rev",
    });

    if (newVersionLetter != null)
    {
        this.removeField("dateField");
        for (var p = 0; p < this.numPages; p++) {

            var aRect = this.getPageBox( {nPage: p} );
            var width = aRect[2] - aRect[0];
            var fieldCreated = false;

            if (width == (11*inch))
            {
                aRect[0] += 1.1*inch;
                aRect[2] = aRect[0] - 36;
                aRect[1] -= 16.6*inch;
                aRect[3] = aRect[1] + 1*inch;

                newDateField = this.addField("dateField" + "." + p, "text", p, aRect);
                newDateField.rotation = 270;
                fieldCreated = true;
            }

            if (width == (17*inch))
            {
                aRect[0] += 15.57*inch;
                aRect[2] = aRect[0]+1*inch;
                aRect[1] -= 9.875*inch;
                aRect[3] = aRect[1] - 36;

                newDateField = this.addField("dateField" + "." + p, "text", p, aRect);
                fieldCreated = true;
            }

            if (width == (24*inch))
            {
                aRect[0] += 1.8*inch;
                aRect[2] = aRect[0] - 36;
                aRect[1] -= 34.9*inch;
                aRect[3] = aRect[1] + 1.75*inch;

                newDateField = this.addField("dateField" + "." + p, "text", p, aRect);
                newDateField.rotation = 270;
                fieldCreated = true;
            }

            if (width == (36*inch))
            {
                aRect[0] += 33.17*inch;
                aRect[2] = aRect[0]+1.75*inch;
                aRect[1] -= 22.2*inch;
                aRect[3] = aRect[1] - 36;

                newDateField = this.addField("dateField" + "." + p, "text", p, aRect);
                fieldCreated = true;
            }

            if (fieldCreated)
            {
                newDateField.textColor = color.red
                newDateField.value = util.printd("mm/dd/yy", oCurrentDate) + " " + util.printd("HH:MM", oCurrentDate) + " " + newVersionLetter;
                newDateField.readonly = true;
            }   
        }
    }
}
4

1 に答える 1

2

ページからページの回転値を取得し、戻り値に基づいてスタンプの向きを調整しようとしましたか?

Acrobat ドキュメンテーションページ 127ごと。

getPageRotation は、ページの回転方法に応じて、0、90、180、または 270 を返します。次に、その値を使用してスタンプの位置を調整できます。

var rotation = this.getPageRotation(3); //get rotation of page 3
if(rotation)
{
    //Depending on the value, adjust location of stamp
}
于 2015-03-17T21:28:58.970 に答える