diff options
author | clarkzjw <[email protected]> | 2022-09-30 23:00:42 -0700 |
---|---|---|
committer | clarkzjw <[email protected]> | 2022-09-30 23:00:42 -0700 |
commit | 60509a72b65f41d95729539a98aa7e595a96e24c (patch) | |
tree | 828ff037c11aba7a81551ea69bc520f06a6984c4 | |
parent | 6f6fc0c91b6064c96043b6eadc60de11b69175f8 (diff) | |
download | Square-60509a72b65f41d95729539a98aa7e595a96e24c.tar.gz |
+ fix
-rw-r--r-- | square.py | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -43,11 +43,12 @@ def drop_shadow(image, offset=(5, 5), background=0xffffff, shadow=0x444444, bord | |||
43 | 43 | ||
44 | # Create the backdrop image -- a box in the background colour with a | 44 | # Create the backdrop image -- a box in the background colour with a |
45 | # shadow on it. | 45 | # shadow on it. |
46 | total_width = image.size[0] + abs(offset[0]) + 2 * border | 46 | w, h = image.size |
47 | total_height = image.size[1] + abs(offset[1]) + 2 * border | ||
48 | back = Image.new(image.mode, (total_width, total_height), background) | ||
49 | 47 | ||
50 | shadow_image = Image.new(image.mode, (image.size[0], image.size[1]), shadow) | 48 | total_width = w + abs(offset[0]) + 2 * border |
49 | total_height = h + abs(offset[1]) + 2 * border | ||
50 | back = Image.new(image.mode, (total_width, total_height), background) | ||
51 | shadow_image = Image.new(image.mode, (w, h), shadow) | ||
51 | 52 | ||
52 | # Place the shadow, taking into account the offset from the image | 53 | # Place the shadow, taking into account the offset from the image |
53 | shadow_left = border + max(offset[0], 0) | 54 | shadow_left = border + max(offset[0], 0) |
@@ -65,7 +66,6 @@ def drop_shadow(image, offset=(5, 5), background=0xffffff, shadow=0x444444, bord | |||
65 | image_left = border - min(offset[0], 0) | 66 | image_left = border - min(offset[0], 0) |
66 | image_top = border - min(offset[1], 0) | 67 | image_top = border - min(offset[1], 0) |
67 | back.paste(image, (image_left, image_top)) | 68 | back.paste(image, (image_left, image_top)) |
68 | |||
69 | return back | 69 | return back |
70 | 70 | ||
71 | 71 | ||