Action
Shows a BGF file on the graphic display
Syntax
SHOWPIC x, y , label
Remarks
Showpic can display a converted BMP file. The BMP must be converted into a BGF file with the Tools Grahic Converter.
The X and Y parameters specify where the picture must be displayed. X and Y must be 0 or a multiple of 8. The picture height and width must also be an multiple of 8.
The label tells the compiler where the graphic data is located. It points to a label where you put the graphic data with the $BGF directive.
See also
$BGF , CONFIG GRAPHLCD , PSET
Example
CLS GRAPH 'clear graphic part of display
ShowPic 0,0, label 'show picture
End
Label:
$BGF "mypic.bgf" 'data will be inserted here