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