Posted 25 November 2014 - 11:14 PM
printing a picture on a monitor?
code(so far):
code(so far):
mon = peripheral.wrap("back")
monX, monY = mon.getSize()
maxX,maxY = term.getSize()
term.setTextColor(colors.lime)
term.setBackgroundColor(colors.white)
term.setCursorPos(maxX/4, maxY/2)
term.clear()
print("Gogel Background Screen")
--this next part is where im rly having trouble
function printLogo()
image = paintutils.loadImage("gogel")
paintutils.drawImage(image, monX/4, monY/2)
end
mon.printImage()