C# (CSharp) Eto.Drawing Bitmap.Lock - 4 exemples trouvés. Ce sont les exemples réels les mieux notés de Eto.Drawing.Bitmap.Lock extraits de projets open source. Vous pouvez noter les exemples pour nous aider à en améliorer la qualité.
Locks the data of the image to directly access the bytes of the image
This locks the data to read and write to directly using unsafe pointers. After reading or updating the data, you must call BitmapData.Dispose() to unlock the data before using the bitmap. e.g.: using (var bd = bitmap.Lock ()) { byte* pdata = bd.Data; // access data }