From b6459b42a0387d78da8bcd2f3cbe8082cfcd853b Mon Sep 17 00:00:00 2001 From: Gordon Shumway <39967334+oddluck@users.noreply.github.com> Date: Thu, 24 Oct 2019 15:30:29 -0400 Subject: [PATCH] change default composite background color --- ASCII/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ASCII/plugin.py b/ASCII/plugin.py index efaaaf3..faa6364 100644 --- a/ASCII/plugin.py +++ b/ASCII/plugin.py @@ -887,7 +887,7 @@ class ASCII(callbacks.Plugin): image = Image.open(filename) if image.mode == 'RGBA': if bg == 99: - newbg = 0 + newbg = 1 else: newbg = bg image = Image.alpha_composite(Image.new("RGBA", image.size, self.rgbColors[newbg] + (255,)), image)