From 8d671f08ac0f2e200200077372bff56f3af293a2 Mon Sep 17 00:00:00 2001 From: kris Date: Fri, 15 Jan 2021 22:34:22 +0000 Subject: [PATCH] Remove bitmap support --- convert.py | 1 - 1 file changed, 1 deletion(-) diff --git a/convert.py b/convert.py index ced1fdc..a38331c 100644 --- a/convert.py +++ b/convert.py @@ -62,7 +62,6 @@ def main(): out_image.save(outfile, "PNG") if args.show_output: out_image.show() - # bitmap = Image.fromarray(screen.bitmap.astype('uint8') * 255) with open(args.output, "wb") as f: f.write(bytes(screen.main))