コード例 #1
0
ファイル: FreeImage.cs プロジェクト: NTDLS/SyntaxBox
 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);
 }