Due: Friday, May 5th, 10:00 A.M.
The other day I was surfing the web and I came across this picture:

And I thought "Wouldn't it be cool if students could write a method that would take in a simple string and produce the "picture version" of that string using the letters represented above.
So that is what you will do!
To begin
Inside this unzipped directory are Twenty Seven (27) picture files. Twenty Six of these represent letters of the alphabet (for example, "A.jpg"). The Twenty Seventh is called "space.jpg" and is simply a blank space. Each of these images is exactly 100x100 pixels.
Write a method called
pictureMessage(text)
As indicated, this method takes only one parameters - a string containing a simple text message.
This method should return one new picture object which is the "concatenation" of the individual letter photos represented in the text message. Thus,
output = pictureMessage("Ben Schafer")
show(output)
would return and display a single picture image that looked like

Things to think about:
Rather than starting with the giant directory of 27 files, figure out how to use the original source file. That is, figure out how to translate that the letter "B" is in the first row/second column while the letter "N" is in the third row/fourth column and a space is in the sixth row/second column. Instead of opening up individual photos your method will just open up the main photo (eatphabet.jpg) and crop out the letters it needs to make it's result.