Posted 13 December 2015 - 12:40 AM
After about an hour of skimming the wiki API list to find a way to load (not edit) a paint image onto a monitor. How would I get it onto the monitor?
local mon = peripheral.find("monitor")
local image = paintutils.loadImage("someImage")
local oldTerm = term.redirect(mon)
paintutils.drawImage(image, 1, 1)
term.redirect(oldTerm)