Difference between revisions of "RenderTarget:save"

From GiderosMobile
Line 6: Line 6:
 
  RenderTarget:save(filename,x,y,width,height)
 
  RenderTarget:save(filename,x,y,width,height)
 
</source>
 
</source>
'''filename''': (string) filename and path to store file, like |D|image.png ''''''<br/>
+
=== Parameters ===
 +
'''filename''': (string) filename and path to store file, like |D|image.png <br/>
 
'''x''': (number) x coordinate from where to start image '''optional'''<br/>
 
'''x''': (number) x coordinate from where to start image '''optional'''<br/>
 
'''y''': (number) y coordinate from where to start image '''optional'''<br/>
 
'''y''': (number) y coordinate from where to start image '''optional'''<br/>
 
'''width''': (number) width of the image to save '''optional'''<br/>
 
'''width''': (number) width of the image to save '''optional'''<br/>
 
'''height''': (number) height of the image to save '''optional'''<br/>
 
'''height''': (number) height of the image to save '''optional'''<br/>

Revision as of 11:45, 23 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