SetPixel(HDC hdc,int x,int y,COLORREF crColor)
但这个是效率最慢的方式,只是用起来方便.
要快的话用如下方式,LockBits UnlockBits.
dstBitmap.LockBits(rect,ImageLockMode.ReadWrite,PixelFormat.Format8bppIndexed);///操作dstBitmap对象dstBitmap.UnlockBits(dstBmData );