我有两个点,A和B。
我需要 C# 中的公式来将此图片基底旋转两点。
A = * , B = + , . = 图像中心
>image 1
---------------
| * |
| . |
| + |
---------------
>after rotate
---------------
| * + |
| . |
| |
---------------
或
>image 2
---------------
| * |
| . |
| + |
---------------
>after rotate
---------------
| + * |
| . |
| |
---------------
我找到了一个旋转image 1
的公式,但这个公式不适用于image 2
. 这个公式是:
float degree = -(float)(Math.Atan2(pointBy - pointAy, pointBx - pointAx) * (180 / Math.PI))
我也使用此功能旋转位图
private Bitmap RotateImage( Bitmap bmp, float angle ) {
Bitmap rotatedImage = new Bitmap( bmp.Width, bmp.Height );
using ( Graphics g = Graphics.FromImage( rotatedImage ) ) {
g.TranslateTransform( bmp.Width / 2, bmp.Height / 2 ); //set the rotation point as the center into the matrix
g.RotateTransform( angle ); //rotate
g.TranslateTransform( -bmp.Width / 2, -bmp.Height / 2 ); //restore rotation point into the matrix
g.DrawImage( bmp, new Point( 0, 0 ) ); //draw the image on the new bitmap
}
return rotatedImage;
}
https://stackoverflow.com/a/12025915/5220303
我找到图像 2 的这个公式
float degree = -(float)(Math.Atan2(pointAy - pointBy, pointAx - pointBx) * (180 / Math.PI));