ラスタイメージを回転させます。

※下記の2通りのメソッドは、引数が異なるのみではなく内部的な処理方法も異なりますので、
条件・環境などにより処理速度に差がある場合があります(どちらが速いかも条件・環境などにより異なります)。
アルファチャンネルの設定が不要な場合は状況により適宜使い分けてください。

オーバーロード一覧

ラスタイメージを回転させます。

[Visual Basic]
Public Function Rotate(angle As Integer, xTurn As Boolean, yTurn As Boolean, mode As Boolean,
red As Byte, green As Byte, blue As Byte, clip As Boolean) As Boolean
[C#]
public bool Rotate(int angle, bool xTurn, bool yTurn, bool mode, byte red, byte green, byte blue, bool clip)

32bit イメージの場合、アルファチャンネル情報も有効にしてラスタイメージを回転させます。

[Visual Basic]
Public Function Rotate(angle As Integer, xTurn As Boolean, yTurn As Boolean, mode As Boolean,
alpha As Byte, red As Byte, green As Byte, blue As Byte, clip As Boolean) As Boolean
[C#]
public bool Rotate(int angle, bool xTurn, bool yTurn, bool mode, byte alpha, byte red, byte green, byte blue, bool clip)

参照

ImageKit.Effect メンバ | Newtone.ImageKit.WPF.ImageKit