Adding images and first draft
This commit is contained in:
parent
c18075fbf5
commit
ec00d8c188
|
@ -1,2 +1,6 @@
|
|||
# Scout Unit Numeral Generator
|
||||
A tool for creating images of Troop, Pack, Crew Numerals
|
||||
|
||||
This tool that creates "unit numerals" for Scout Troops.
|
||||
|
||||
The flow is the user inputs their unit number, (228 or 51) and the tool will put the associated images (five.png, and one.png) for each numeral next to each other and output a file (five_one.png).
|
||||
|
|
|
@ -0,0 +1,15 @@
|
|||
from PIL import Image
|
||||
# get the numeral images - add pack numeals later
|
||||
one = Image.open("one.jpg")
|
||||
two = Image.open("two.jpg")
|
||||
three = Image.open("three.jpg")
|
||||
four = Image.open("four.jpg")
|
||||
five = Image.open("five.jpg")
|
||||
six = Image.open("six.jpg")
|
||||
seven = Image.open("seven.jpg")
|
||||
eight = Image.open("eight.jpg")
|
||||
nine = Image.open("nine.jpg")
|
||||
zero = Image.open("zero.jpg")
|
||||
# get the unit number - add pack as an option later
|
||||
unitno = input("What is your Troop number?")
|
||||
# parse the troop number
|
Loading…
Reference in New Issue