diff --git a/.gitignore b/.gitignore index a0f4055..ce6933f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ output/*.png -.DS_Store \ No newline at end of file +.DS_Store +assets/*.old \ No newline at end of file diff --git a/assets/blue.png b/assets/blue.png index 6dca6ca..0d2a979 100644 Binary files a/assets/blue.png and b/assets/blue.png differ diff --git a/assets/green.png b/assets/green.png index 5f5e5c6..0e8ef2f 100644 Binary files a/assets/green.png and b/assets/green.png differ diff --git a/assets/red.png b/assets/red.png index 3af6c80..c466acb 100644 Binary files a/assets/red.png and b/assets/red.png differ diff --git a/assets/white.png b/assets/white.png index b26bb09..6e9f012 100644 Binary files a/assets/white.png and b/assets/white.png differ diff --git a/assets/yellow.png b/assets/yellow.png index 5a2d098..4d99b01 100644 Binary files a/assets/yellow.png and b/assets/yellow.png differ diff --git a/main.py b/main.py index d128591..8a82312 100755 --- a/main.py +++ b/main.py @@ -43,7 +43,7 @@ def draw_symbol(img, symbol, color, x, y): def draw_rune(img, color): with Image(filename='assets/{}.png'.format(color)) as rune: - rune.resize(110,122) + rune.resize(220,244) img.composite( rune, left=int((img.width - rune.width) / 2),