浏览代码

Alternating upper- and lower-case letters

to add variety to symbol size and shape
master
Noëlle Anthony 6 年前
父节点
当前提交
cd64faf9be
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2
    2
      stitchify.py

+ 2
- 2
stitchify.py 查看文件

""" """


__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 = []

正在加载...
取消
保存