Example #1
0
 public FreeImage(byte[] bts, int width, int height, int pitch, uint bpp, uint redMask,
                  uint greenMask, uint blueMask, bool topDown)
 {
     m_Handle = FreeImageApi.ConvertFromRawBits(bts, width, height,
                                                pitch, bpp, redMask, greenMask, blueMask, topDown);
 }