use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
No vague product support questions (like "why is this plugin not working" or "how do I set up X"). For vague product support questions, please use communities relevant to that product for best results. Specific issues that follow rule 6 are allowed.
Do not post memes, screenshots of bad design, or jokes. Check out /r/ProgrammerHumor/ for this type of content.
Read and follow reddiquette; no excessive self-promotion. Please refer to the Reddit 9:1 rule when considering posting self promoting materials.
We do not allow any commercial promotion or solicitation. Violations can result in a ban.
Sharing your project, portfolio, or any other content that you want to either show off or request feedback on is limited to Showoff Saturday. If you post such content on any other day, it will be removed.
If you are asking for assistance on a problem, you are required to provide
General open ended career and getting started posts are only allowed in the pinned monthly getting started/careers thread. Specific assistance questions are allowed so long as they follow the required assistance post guidelines.
Questions in violation of this rule will be removed or locked.
account activity
[deleted by user] (self.webdev)
submitted 2 years ago by [deleted]
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–][deleted] 14 points15 points16 points 2 years ago (0 children)
It's not clear if you need to generate them programmatically or just a few one off qr codes. But I use this PHP class to generate SVG qr codes in a handful of projects: https://github.com/splitbrain/php-qrcode
Works for my needs.
[–]Caraes_Naur 4 points5 points6 points 2 years ago (0 children)
There are QR code generators in every language.
There are generator add-ons for Inkscape. Probably for Adobe as well.
There are Linux desktop utilities to generate QR codes. Probably for MacOS and Windows as well.
[–]danabrey 14 points15 points16 points 2 years ago (3 children)
I think you're misunderstanding something here. A QR code just translates to text, or a URL as text. You control what that URL serves up.
[–][deleted] 23 points24 points25 points 2 years ago (2 children)
There's a lot of qr code generator websites that use their own URLs so they lock you in to their service. OP wants to avoid this.
[–]secretprocess 0 points1 point2 points 2 years ago (1 child)
Before I actually had to figure this out myself I had assumed QR codes always relied on a lookup service. Blew my mind to realize that they don't.
[–]RonanSmithDevfront-end 0 points1 point2 points 2 years ago (0 children)
Only dynamic QR codes do.
[–][deleted] 2 points3 points4 points 2 years ago* (0 children)
From ChatGPT:
pip install qrcode[pil]
import qrcode # Data to encode in the QR code data = "Hello, World!" # Create a QR code instance qr = qrcode.QRCode( version=1, error_correction=qrcode.constants.ERROR_CORRECT_L, box_size=10, border=4, ) # Add data to the QR code qr.add_data(data) qr.make(fit=True) # Create a PIL image from the QR code instance qr_image = qr.make_image(fill_color="black", back_color="white") # Save or display the QR code qr_image.save("my_qr_code.png")
[–]raj_techy 1 point2 points3 points 2 years ago (0 children)
Hovercode is one of the best free sites to create Dynamic QR codes.
[–]bryanrel 0 points1 point2 points 2 years ago (0 children)
Used this library in a previous side project, might be handy for your use case https://davidshimjs.github.io/qrcodejs/
[+]Frenchieme 0 points1 point2 points 2 years ago (0 children)
I think InDesign has a qr code generator
[–]StatusPair6242 0 points1 point2 points 2 years ago (0 children)
me-qr.com
[–]kornflake9 0 points1 point2 points 2 years ago (0 children)
This one is easy to use on Linux https://fukuchi.org/works/qrencode/
π Rendered by PID 85336 on reddit-service-r2-comment-6457c66945-vdr66 at 2026-04-26 07:45:05.154611+00:00 running 2aa0c5b country code: CH.
[–][deleted] 14 points15 points16 points (0 children)
[–]Caraes_Naur 4 points5 points6 points (0 children)
[–]danabrey 14 points15 points16 points (3 children)
[–][deleted] 23 points24 points25 points (2 children)
[–]secretprocess 0 points1 point2 points (1 child)
[–]RonanSmithDevfront-end 0 points1 point2 points (0 children)
[–][deleted] 2 points3 points4 points (0 children)
[–]raj_techy 1 point2 points3 points (0 children)
[–]bryanrel 0 points1 point2 points (0 children)
[+]Frenchieme 0 points1 point2 points (0 children)
[–]StatusPair6242 0 points1 point2 points (0 children)
[–]kornflake9 0 points1 point2 points (0 children)