- This wiki is out of date, use the continuation of this wiki instead
Put
From FenixWiki
Contents |
Definition
INT put ( <INT fileID> , <INT graphID> , <INT x> , <INT y> )
Draws (blits) a graph onto the background.
For more advanced blitting, see:
- xput()
- map_put()
- map_xput()
- map_xputnp()
Parameters
| INT fileID | - The file that holds the graph. |
| INT graphID | - The graph to draw with. |
| INT x | - Where on the background's x-axis to put the graph. |
| INT y | - Where on the background's y-axis to put the graph. |
Returns
INT : true
Notes
The x and y parameters denote where to draw the graph, that is, where the center of the to be drawn graph will be.
Errors
| Unsupported color depth | - The origin graph's color depth is greater than the destination graph's. |
Example
Program a_map_is_born;
Private
int map;
Begin
// Create a new graph of size 100x100 and color depth of 8bit
map = new_map(100,100,8);
// Clear the map red
map_clear(0,map,rgb(255,0,0));
// Put it in the center of the screen
put(0,map,160,100);
Loop
frame;
End
End
Used in example: new_map(), map_clear()
This will result in something like:
| Maps Functions | |
| • Graphic_info() • Map_block_copy() • Map_clear() • Map_clone() • Map_put() • Map_put_pixel() • Map_xput() • Map_xputnp() • New_map() • Save_png() • Unload_map() • | |
