extractText from theImage |
Extracts text from an ILImage object. Returns the list of text strings found in the image. |
|rotation| of theImage by degrees |
Rotates an ILImage object clockwise by the specified amount of degrees. degrees must be a real number. |
rotate(theImage, degrees) |
Rotates an ILImage object clockwise by the specified amount of degrees. degrees must be a real number. |
classifications for theImage above confidenceThreshold |
Gets a list of possible classifications for objects in an ILImage object. confidenceThreshold must be a real number representing the minimum confidence level of each returned classification. Returns the classifications as a list of record objects with identifier (text) and confidence (real) fields. |
extractPayloads from theImage |
Gets the payload text of all barcodes, QR codes, etc. in an ILImage object. Returns the payloads as a list of text strings. |
countFaces for theImage |
Returns the integer number of human faces observed in an ILImage object. |
Symbol(symbolName, pointSize) |
Initializes an ILImage script object from the system symbol with the specified name, sized to the specified point size. symbolName must be a text string, and pointSize must be a number. Returns the newly created ILImage object. |
createImage from theData |
Creates an ILImage object from the provided data. theData can be either an AppleScript or Objective-C data object, or a base 64 encoded string. Returns the newly created ILImage object. |
imageFromData:theData |
Creates an ILImage object from the provided data. theData can be either an AppleScript or Objective-C data object, or a base 64 encoded string. Returns the newly created ILImage object. |