paintutils.loadImage
From ComputerCraft
Jump to navigation
Jump to search
paintutils.loadImage Function | |
---|---|
Syntax paintutils.loadImage(
| |
Returns | nil |
API | paintutils |
Source | CC:Tweaked (source) |
Loads a Image from a File which can be drawn by paintutils.drawImage. You can create a Image with Paint.
|
|||
Loads and draws a Image. | |||
Code | local pic = paintutils.loadImage("/picture.nfp")
paintutils.drawImage(pic)
|