C# Graphics圖像旋轉與繪圖總結

1.計算出來旋轉後的大矩形,並且在裏面畫出原始矩形(原點在左上角0,0) dW dH W = (int)(dH * dSin + dW * dCos); H = (int)(dW * dSin + dH * dCos); 2.找一個合適的旋轉點   g.TranslateTransform((float)(dH * dSin), 0); 3.然後進行旋轉角度,負數逆時針旋轉,正數順時針旋轉   g
相關文章
相關標籤/搜索