0
我沒有問題,但我想明白了一件事的親身經歷爲什麼Graphics.FromImage(位圖MYBITMAP)更新MYBITMAP
var graphics = Graphics.FromImage(Bitmap myBitmap)
...
graphics.DrawImage(Image image, Rectangle destRect, int srcX, int srcY, int srcWidth, int srcHeight, GraphicsUnit srcUnit, ImageAttributes imageAttr)
所以,問題是:爲什麼在我調用的函數myBitmap
進行了更新但FromImage()
沒有得到ref
或out
屬性?