loadImage function

Image loadImage(
  1. String fileName
)

Load image from file into CPU memory (RAM).

Implementation

Image loadImage(String fileName) {
  return Image.fromRef(library.LoadImage(string.toNative(fileName)));
}