This is a read-only snapshot of the ComputerCraft forums, taken in April 2020.
TheDawgMiner's profile picture

Min/max Font Size

Started by TheDawgMiner, 05 August 2013 - 02:32 AM
TheDawgMiner #1
Posted 05 August 2013 - 04:32 AM
I'm trying to write a colored ASCII disply for the monitor(6x8), I need to know what the smallest font i can use to get the best image quality.
reububble #2
Posted 05 August 2013 - 07:06 AM
The smallest font size is font size 1, which takes up one of those 48 pixels you have. This should be in the ask a pro even thought it's not a big question.
Zudo #3
Posted 05 August 2013 - 07:58 AM
By the way, there is a section called "Ask A Pro" :D/>
MKlegoman357 #4
Posted 05 August 2013 - 10:15 AM
The smallest font size is font size 1, which takes up one of those 48 pixels you have. This should be in the ask a pro even thought it's not a bit question.

Actually, it's (0.5).
Cranium #5
Posted 05 August 2013 - 10:30 AM
Moved to Ask a Pro
Shazz #6
Posted 05 August 2013 - 11:12 AM
The smallest font that you can use is 0.5 and it increments by 0.5 until it reaches 5. So these are the font sizes you can use: 0.5, 1, 1.5, 2, 2.5, 3, 3.5, 4, 4.5, 5.
http://computercraft.info/wiki/Monitor.setTextScale
TheDawgMiner #7
Posted 05 August 2013 - 03:30 PM
thanks all!!