From e146b6441ecf2aaaa9f5bf4e9845a0ddec696e9f Mon Sep 17 00:00:00 2001 From: Gordon Shumway <39967334+oddluck@users.noreply.github.com> Date: Thu, 26 Sep 2019 20:02:02 -0400 Subject: [PATCH] Update plugin.py --- ASCII/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ASCII/plugin.py b/ASCII/plugin.py index 2530e4c..5fec01a 100644 --- a/ASCII/plugin.py +++ b/ASCII/plugin.py @@ -933,9 +933,9 @@ class ASCII(callbacks.Plugin): resize = optlist.get('resize') else: resize = self.registryValue('resize', msg.args[0]) + image2 = image.resize((cols, rows), resize) if 's' in optlist: image2 = ImageEnhance.Color(image2).enhance(s) - image2 = image.resize((cols, rows), resize) if dither: image2 = hitherdither.diffusion.error_diffusion_dithering(image2, self.palette, method=dither) image2 = image2.convert('RGB')