中心点についてのスタンプの回転
実装の詳細
Stamp クラスは、PDFファイルに透かしを追加することを可能にします。 You can specify image to be added as a stamp using BindImage method. The SetOrigin method allows you to set the origin of the added stamp; this origin is the lower-left coordinates of the stamp. You can also set the size of the image using SetImageSize method.
Now, we see how the stamp can be rotated about the center of the stamp.
画像をスタンプとして追加するには、BindImage メソッドを使用して指定できます。SetOrigin メソッドを使用すると、追加されたスタンプの原点を設定できます。この原点は、スタンプの左下の座標です。また、SetImageSize メソッドを使用して画像のサイズを設定することもできます。
次に、スタンプの中心を軸にしてスタンプを回転させる方法を見てみましょう。 Stamp クラスは、Rotation というプロパティを提供します。このプロパティは、スタンプの内容を0から360の範囲で回転させるか取得します。0から360の任意の回転値を指定できます。回転値を指定することで、スタンプをその中心点を基準に回転させることができます。StampがStamp型のオブジェクトである場合、回転値はaStamp.Rotation = 90のように指定できます。この場合、スタンプはスタンプ内容の中心を基準に90度回転します。次のコードスニペットは、スタンプを中心点を基準に回転させる方法を示しています。