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