C
#define PutImage(left, top, image, stretch) PutImagePartial(left, top, image, stretch, 0, 0, 0, 0)
Overview
This renders the image pointed to by "image" starting from left, top coordinates.
Input Parameters
Input Parameters |
Description |
left |
horizontal starting position of the full image on the screen |
top |
vertical starting position of the full image on the screen |
image |
pointer to the image location. |
stretch |
The image stretch factor.
|
Returns
For NON-Blocking configuration:
- Returns 0 when device is busy and the image is not yet completely drawn.
- Returns 1 when the image is completely drawn.
- Always return 1.
Side Effects
none