摘要:
public static Bitmap RotateImage(Image image, float angle) { if (image == null) throw new ArgumentNullException("image"); float dx = image.Width / 2.0f; float dy = image.Height / 2.0f; Bitmap rotatedBmp = new Bitmap(image.Width, image... 阅读全文
posted @ 2012-12-04 21:59
94cool
阅读(2343)
评论(0)
推荐(0)
浙公网安备 33010602011771号