Will allow you to print off pictures into the terminal using sprite. One must provide a file that contains a set of values. One may either use the monoSprite() function or the rgbSprite() function. The monoSprite() function expects a file that contains "brightness" values ranging from 000-255. Note that if you must pad values on the left side with 0s if it isn't 3 digits long (50 becomes 050). Every new line in the given file will be a new line in the resulting picture. Note that the final line represents how large the picture will be. The rgbSprite() function works in the same way as monoSprite() but note that rgb values are 9 digits long (3 groups of 3 digit long values) (This means 122103220 is how you would store a single value).
Note that if it seems that the picture is only a single pixel, check the given file and make sure that the final line is indeed the size and not an empty line (can happen).