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