ImagePropertyPixels

Typeoperator
DictionaryLCB
LibraryLiveCode Builder
Syntax
the pixels of <mImage>
Associationscom.livecode.canvas
Summary

The pixel data of an image.

Parameters
NameTypeDescription
mImage

An expression which evaluates to an image.

Example
// Load an image from a file
variable tImage as Image
put image from file "images/logo.png" into tImage

// Get the pixels of the image
variable tPixelData as Data
put the pixels of tImage into tPixelData
Description

The raw ARGB pixel data of the image.

Tagscanvas