unloadImage function

void unloadImage(
  1. Image image
)

Unload image from CPU memory (RAM).

Implementation

void unloadImage(Image image) {
  library.UnloadImage(image.ref);
}