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