1 posts
Posted 21 May 2013 - 07:46 PM
Hi!
I have made an image in paint and i'm looking for a simple program to put the image on a monitor on startup. This way I can set it up and leave it alone through server restarts. I'm sure there is a VERY simple solution, i just can't seem to find it anywhere after three days of googling.
Thanks in advance for any help!
-Daryl
8543 posts
Posted 22 May 2013 - 01:44 AM
Split into new topic.
If I recall correctly, this should be a relatively simple matter of opening the file, redirecting the terminal to the screen, and using the paintutils API to draw it.
1114 posts
Location
UK
Posted 22 May 2013 - 02:26 AM
If I recall correctly, this should be a relatively simple matter of opening the file, redirecting the terminal to the screen, and using the paintutils API to draw it.
I have done that before for my Tekkit space program, and it works
199 posts
Location
Switzerland
Posted 22 May 2013 - 05:34 AM
If I recall correctly, this should be a relatively simple matter of opening the file, redirecting the terminal to the screen, and using the paintutils API to draw it.
I have done that before for my Tekkit space program, and it works
to Quote Cpt. Jack Sparrow: "
Well, that's even more than less than unhelpful."@Topic: if i understand you correct you want a code that redirects the terminal to a monitor then draws an Image if so then this should do it.
term.redirect(peripheral.wrap("yourside"))
image = paintutils.loadImage("yourimage")
paintutils.drawImage(image, 1, 1)
by the way, all 3 lines of code are from the wiki page found Here in the term and paintutils APIgreets Loki