我想进行速度测试,以了解 Graphics.FromImage() 的成本。
为此,我首先做了一个循环,在其中反复调用 Graphics.FromImage。现在在我的第二次测试中,我只做了一次,但现在我得到了一个错误。
m_Buffer = New Bitmap(Me.ClientSize.Width, Me.ClientSize.Height, System.Drawing.Imaging.PixelFormat.Format32bppPArgb)
m_g = Graphics.FromImage(m_Buffer)
For i As Integer = 0 To 1000
Using m_g
m_g.FillEllipse(New SolidBrush(Color.Blue), 0, 0, 100, 100)
End Using
Next i
在 (i=1) 上,我在 m_g.FilleEllipse 行上收到错误“参数无效”有人知道为什么吗?