Question: Python 4. [dynamic_typography.py] You will write a program that generates a drawing from a message input by the user. The message should be drawn in
4. [dynamic_typography.py] You will write a program that generates a drawing from a message input by the user. The message should be drawn in some way that is based on the ordinal values of the For example, the input message for the drawing below, "That was a Freebie." is drawn such that the position of the letters is based on their integer ordinal value (i.e., the T is higher up than the a because its ordinal value is smaller than 'a 's ordinal value). Dyanmic Typography Image hat was a reebie What's also special about the image is the use of color and the creation of a shadow behind the letters in the message. NOTE: a shadow is not a requirement, that is just my special thing example. Your program should Prompt the user to input a message, this can be done in the console or using an Entry box with a mouse click handler Use the ordinal values of the characters in the input message to draw them in some unique way (i.e., we discussed how numbers are used in graphics, be creative in how you use the number of a character to make it unique such as color, position, repetitions, streaks, outlines) Have some color, not just black and white Change the typography in some way (e.g., size, font of the letters) Include comments explaining how your program is using the ordinal value to make a unique image from the message
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
