Esempio n. 1
0
 public static Bitmap ReadRGB24(Stream stream, int width, int height)
 {
     return(RGB24Reader.Read(stream, width, height));
 }
Esempio n. 2
0
 public static Bitmap ReadRGB24(byte[] data, int width, int height)
 {
     return(RGB24Reader.Read(new MemoryStream(data), width, height));
 }