$createImage

Creates an image with the given width and height or loads an image from a given url.
Syntax
    $createImage{width}{height}
DocumentationCreates an image with the given size: $createImage{width}{height}

    Parameters:
      width, the width of the image.
      height, the height of the image.
Loads an image from the given location: $createImage{url}

    Parameters:
      url, the url the image is to be loaded from.
    Note:
      using the Image/Draw functions, the content-type of the template needs to be 'image/gif'
Examples
Create an image with a size of (200, 200) as a black rectangle:

    $createImage{200}{200}
    $setDrawColor{black}
    $fillRectangle{0}{0}{199}{199}
GroupGraphic
Minimum required transaction-mode:NONE
Required scripting permission of the developerPERMISSION_FL_BASIC
Minimum parameters1
Maximum parameters 2