Difference between revisions of "ImageData:getDimensions"

(Created page)
 
m
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{newin|0.9.0|090|type=function}}
+
{{newin|[[0.9.0]]|090|type=function}}
Gets the width and height of the ImageData.
+
Gets the width and height of the ImageData in pixels.
 
== Function ==
 
== Function ==
 
=== Synopsis ===
 
=== Synopsis ===
Line 9: Line 9:
 
None.
 
None.
 
=== Returns ===
 
=== Returns ===
{{param|number|width|The width of the ImageData.}}
+
{{param|number|width|The width of the [[ImageData]] in pixels.}}
{{param|number|height|The height of the ImageData.}}
+
{{param|number|height|The height of the [[ImageData]] in pixels.}}
 
== See Also ==
 
== See Also ==
 
* [[parent::ImageData]]
 
* [[parent::ImageData]]
 
[[Category:Functions]]
 
[[Category:Functions]]
{{#set:Description=Gets the width and height of the ImageData.}}
+
{{#set:Description=Gets the width and height of the ImageData in pixels.}}
 
== Other Languages ==
 
== Other Languages ==
 
{{i18n|ImageData:getDimensions}}
 
{{i18n|ImageData:getDimensions}}

Latest revision as of 03:59, 4 February 2018

Available since LÖVE 0.9.0
This function is not supported in earlier versions.

Gets the width and height of the ImageData in pixels.

Function

Synopsis

width, height = ImageData:getDimensions( )

Arguments

None.

Returns

number width
The width of the ImageData in pixels.
number height
The height of the ImageData in pixels.

See Also

Other Languages