|
|
|
|
|
|
|
|
""" |
|
|
""" |
|
|
|
|
|
|
|
|
__author__ = "Noëlle Anthony" |
|
|
__author__ = "Noëlle Anthony" |
|
|
__version__ = "0.3.1" |
|
|
|
|
|
|
|
|
__version__ = "0.3.2" |
|
|
|
|
|
|
|
|
import sys |
|
|
import sys |
|
|
from PIL import Image, ImageDraw |
|
|
from PIL import Image, ImageDraw |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
symbols = defaultdict(str) |
|
|
symbols = defaultdict(str) |
|
|
symbols["transparent"] = " " |
|
|
symbols["transparent"] = " " |
|
|
characters = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz" |
|
|
|
|
|
|
|
|
characters = "AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz" |
|
|
symbol_counts = defaultdict(int) |
|
|
symbol_counts = defaultdict(int) |
|
|
# l = 0 |
|
|
# l = 0 |
|
|
lines = [] |
|
|
lines = [] |