fn load(path string) ?Image
fn load_from_memory(buf &byte, bufsize int) ?Image
fn set_flip_vertically_on_load(val bool)
struct Image {
pub mut:
width int
height int
nr_channels int
ok bool
data voidptr
ext string
}
fn (img &Image) free()