$drawText

Draws the given text at the specified position.
Syntax
    $drawText{x}{y}{text}
DocumentationDraws the given text at the specified position:

    Parameters:
      x, the x coordinate.
      y, the y coordinate.
      text, the text to be drawn.
    Note:
      the template using this function must have the content type 'image/gif' or 'image/jpeg'.
Examples
    $createImage{200}{200}
    $setDrawColor{black}
    $fillRectangle{0}{0}{199}{199}
    $setDrawColor{white}
    $drawText {100}{100}{Hello World}

    Result:
    an image with a width of 200/200; within a black rectangle with the size 199/199;
    and a white text "Hello World" at the position x=100 y=100 appears
GroupGraphic
Minimum required transaction-mode:NONE
Required scripting permission of the developerPERMISSION_FL_BASIC
Minimum parameters3
Maximum parameters 4