diff --git a/modules/ascii.py b/modules/ascii.py index bc9ef0d..9143e9e 100755 --- a/modules/ascii.py +++ b/modules/ascii.py @@ -40,7 +40,7 @@ def scale_image(image, maxDim=100): new_height = maxDim aspect_ratio = original_width/float(original_height) new_width = int(aspect_ratio * new_height) - image = image.resize((new_width, new_height)) + image = image.resize((new_width, new_height), Image.ANTIALIAS) return image