PDFImage
Use this command to print an image at the current coordinates. Specify the maximum width and height for your image in the current units (default is millimeters).
The Anveo Mobile App only supports PNG images.
PDFImage(string ImageContent,
int MaxWidth,
int MaxHeight)
Example:
Prints the picture from the company information to the PDF
local CI = Record('Company Information');
CI:FINDFIRST();
PDFImage(CI:GETVALUE('Picture'),40,20);