I am looking for a library to use to generate a QR code that contains email contact details with a logo in the centre. It seems Segno seems to be quite popular and has the ability to create artistic QR codes, however, I can't seem to find any examples of a simple QR with a logo in the centre.
I've generated a few POC QR codes containing the relevant email data and it looks perfect, anyone have any idea if segno supports adding a logo in the centre?
Example Basic Email QR
from segno import helpers
qrcode = helpers.make_mecard(name='Doe,John', email='me@example.org', phone='+1234567')
# Some params accept multiple values, like email, phone, url
qrcode = helpers.make_mecard(name='Doe,John',email=('me@example.org', 'another@example.org'),url=['http://www.example.org', 'https://example.org/~joe'])
qrcode.save('emailCode.svg', scale=4)