2011-08-24 86 views
0

爲什麼我的圖像不會旋轉?使用AForge.NET庫的C#圖像旋轉?

Image map = Properties.Resources.Map; 

    //Creates a new Bitmap as the size of the window 
    Bitmap bmp = new Bitmap(map.Width, map.Height); 
    //Creates a new graphics to handle the image that is coming from the stream 
    Graphics g = Graphics.FromImage((Image)bmp); 
    g.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.HighQualityBilinear; 

    MapY += (js.State.Y - 500)/100; 
    MapRotation += (js.State.X - 500)/100; 

    RotateBilinear filter = new RotateBilinear(30, true); 
    g.DrawImage(map, 0, MapY, map.Width, map.Height); 

    Bitmap newbmp = bmp.Clone(new Rectangle(0, 0, bmp.Width, bmp.Height), System.Drawing.Imaging.PixelFormat.Format24bppRgb); 

    filter.Apply(newbmp); 
    picBoxMap.Image = (Image)newbmp; 

回答

3
filter.Apply(newbmp) 

返回旋轉後的圖像的位圖。

我的猜測是,既然你沒有分配一個新的位圖,它會丟失。

嘗試:

Bitmap rotatedBmp = filter.Apply(newbmp) 

然後使用任何你想要的rotatedBmp。