From b569238acc781545f43e7d117e933f679f96fbbb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cristia=CC=81n=20Pe=CC=81rez?= Date: Thu, 5 Oct 2023 12:37:05 -0300 Subject: [PATCH] PyQR: colores de relleno y fondo configurables --- pyqr.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pyqr.py b/pyqr.py index 3a79bd200..26087dcbf 100644 --- a/pyqr.py +++ b/pyqr.py @@ -107,6 +107,8 @@ def GenerarImagen( nro_doc_rec=20000000001, tipo_cod_aut="E", cod_aut=70417054367476, + color_relleno="black", + color_fondo="white", ): "Generar una imágen con el código QR" # basado en: https://www.afip.gob.ar/fe/qr/especificaciones.asp @@ -139,7 +141,7 @@ def GenerarImagen( qr.add_data(url) qr.make(fit=True) - img = qr.make_image(fill_color="black", back_color="white") + img = qr.make_image(fill_color=color_relleno, back_color=color_fondo) img.save(self.Archivo, self.Extension.upper())