> http://nonsoft.la.coocan.jp/SoftSample/CS.NET/SampleRotateBitmap.html を試しましたが Private Function RotateBitmap( _ ByVal bmp As Bitmap, ByVal angle As Single, ByVal x As Integer, ByVal y As Integer) As Bitmap
また、元画像の描画位置を左上以外(x2, y2)にしたい場合は、回転後の g.TranslateTransform(x, y, MatrixOrder.Append) の後に、さらに g.TranslateTransform(x2, y2, MatrixOrder.Append) を加えてから描画するようにします。
> Private Function RotateBitmap( _ > ByVal bmp As Bitmap, ByVal angle As Single, ByVal x As Integer, ByVal y As Integer) As Bitmap > ByValの所で構文エラーとなってしまいます。