ImageMakeFromData
Type
operator
Summary
Creates a new image.
Syntax
image from data <mData>
Description
Creates a new image.
Parameters
Name | Type | Description |
---|---|---|
mData | An expression which evaluates to binary data |
Examples
// Load image from a block of data
variable tData
put the contents of file "images/logo.png" into tData
variable tImage
put image from data tData into tImage