How to convert System.Drawing.BitMap to Byte[]?

  • Thread starter Thread starter david
  • Start date Start date
You can query the BitmapData which has a pointer in it. This requrires
unsafe code, but you can access the bitmap bits directly.
 
Back
Top