java - Given a .jpg or .png, and a URL, how to generate a "LogoQ" type of QR code? -


from www.qrcode.com, "logoq new type of qr code created enhance visual recognizability combining letters , pictures in full color."

i able take image file , url , generate such qr code, similar offered @ website visualead.com -- without generated qr code redirecting site, , potentially encountering ads, before original url opened.

have searched bit "logoq" not find useful results.

i'm open using python, java, or imagemagick, or whatever other libraries or tools might suitable this.

thank you.

creating logoq themed qr code simple task imagemagick. imagemagick language bindings cover both java , python, i'll give example cli utilities.

for creating logoq, screen compose logo graphic on qr code.

convert /path/to/qr_code.png \         /path/to/logo.png \         -compose screen \         -composite \         /path/to/logo_qr.png 

how generate logoq qr code

there many ways, libraries, , apis generate qr code. half remember google providing free api, that's been deprecated. if you've compiled imagemagick http support, update above example call web services directly on http

convert https://example.org/path/to/qr/api \         https://example.org/path/to/cdn/logo \         -compose screen \         -composite \         /path/to/logo_qr.png 

logoq qrcode web service


Comments

Popular posts from this blog

asp.net mvc - SSO between MVCForum and Umbraco7 -

Python Tkinter keyboard using bind -

ubuntu - Selenium Node Not Connecting to Hub, Not Opening Port -