Difference between revisions of "RenderTarget:save"

From GiderosMobile
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
'''Available since:''' Gideros 2016.08<br/>
+
'''<translate>Available since</translate>:''' Gideros 2016.08<br/>
=== Description ===
+
=== <translate>Description</translate> ===
 
<translate>save contents of RenderTarget as image</translate>
 
<translate>save contents of RenderTarget as image</translate>
 
<source lang="lua">
 
<source lang="lua">
 
  RenderTarget:save(filename,x,y,width,height)
 
  RenderTarget:save(filename,x,y,width,height)
 
</source>
 
</source>
=== Parameters ===
+
=== <translate>Parameters</translate> ===
 
'''filename''': (string) <translate>filename and path to store file, like |D|image.png</translate> <br/>
 
'''filename''': (string) <translate>filename and path to store file, like |D|image.png</translate> <br/>
 
'''x''': (number) <translate>x coordinate from where to start image</translate> '''optional'''<br/>
 
'''x''': (number) <translate>x coordinate from where to start image</translate> '''optional'''<br/>

Revision as of 08:28, 24 August 2018

Available since: Gideros 2016.08

Description

save contents of RenderTarget as image

 RenderTarget:save(filename,x,y,width,height)

Parameters

filename: (string) filename and path to store file, like |D|image.png
x: (number) x coordinate from where to start image optional
y: (number) y coordinate from where to start image optional
width: (number) width of the image to save optional
height: (number) height of the image to save optional