Difference between revisions of "image.height"

From Inspired-Lua Wiki
Jump to navigation Jump to search
(Created page with "image.'''height''' is a function that is part of image. {{Since|3.0}} This function returns as an integer the '''height''' pixels of the given image. == Sy...")
 
Line 3: Line 3:
 
{{Since|3.0}}
 
{{Since|3.0}}
  
This function returns as an integer the '''height''' pixels of the given image.
+
This function returns as an integer the '''height''', in pixels, of the given image.
  
 
== Syntax  ==
 
== Syntax  ==

Revision as of 22:01, 24 May 2011

image.height is a function that is part of image.

This has been introduced in TI-Nspire OS 3.0 (Changes).


This function returns as an integer the height, in pixels, of the given image.

Syntax

image.height(image)

Parameter Type Description
image TI.Image The image you want to the height of.

Example

imageHeight = image.height(theImage)

See also