this post was submitted on 07 May 2022
0 points (NaN% liked)

Asklemmy

43159 readers
1614 users here now

A loosely moderated place to ask open-ended questions

Search asklemmy ๐Ÿ”

If your post meets the following criteria, it's welcome here!

  1. Open-ended question
  2. Not offensive: at this point, we do not have the bandwidth to moderate overtly political discussions. Assume best intent and be excellent to each other.
  3. Not regarding using or support for Lemmy: context, see the list of support communities and tools for finding communities below
  4. Not ad nauseam inducing: please make sure it is a question that would be new to most members
  5. An actual topic of discussion

Looking for support?

Looking for a community?

~Icon~ ~by~ ~@Double_[email protected]~

founded 5 years ago
MODERATORS
 

Is there anything similar to a QR code that works offline?

Say I have a flyer that I want to discreetly distribute and there is no internet.

Is there something like a QR code that contains the data itself and not just a URL?

This way someone with no data plan could scan the icon/code with an app and the unrecognizable bits and bytes from the icon/code would show up on their screen as a .JPEG of a flyer or something.

you are viewing a single comment's thread
view the rest of the comments
[โ€“] [email protected] 0 points 2 years ago (4 children)

There are many types of QR code. iirc a single qrcode can contain up to a few kilobytes, but the more data you put in it the more difficult it will be to scan.

so, you could use qrcodes for offline distribution of short text messages or very low resolution images. I think mobile devices' qrcode scanners will display the contents of TEXT type qrcodes, but they probably don't have support for decoding an image from one (so such an app would need to be written). you can create TEXT type qrcodes using the qrencode tool (packaged in major linux distros) or using websites like https://www.qr-code-generator.com/ (note that I think only their URL and TEXT types are offline; the others upload a file to their servers and make a qrcode containing a URL for it).

This qrcode says "Hello":

This qrcode contains this 88x26 pixel (1467 byte) image:

(created using cat lemmy.png |base64 |qrencode -o lemmy_qr.png; can be decoded using zbarimg lemmy_qr.png |sed 's/QR-Code://'|base64 -d > output.png. on debian/ubuntu you can apt install qrencode zbar-tools to get the two required commands.)

[โ€“] [email protected] 0 points 2 years ago (3 children)

I didn't know there was an actual limit to the size of a QR code, but as we see a big problem with (raster) images is that the QR code rapidly becomes much more complex than the image itself

[โ€“] [email protected] -1 points 2 years ago (1 children)

Vector images can be a good fit though! If you can fit a URL in there, a SVG could fit in too :)

[โ€“] [email protected] 0 points 2 years ago (1 children)

I agreed a priori, which, as you probably guessed, is exactly why I put that parenthesis ๐Ÿ˜€ But I think in practice the starting point already is too complex. For example, I opened inkscape and saved the empty image, the result is already more than 1KB. Similarly, Lemmy's very simple logo is already 3KB.

[โ€“] [email protected] -1 points 2 years ago

SVGs can be minified after edition, but of course nothing will beat hand-crafted SVGs...

load more comments (1 replies)
load more comments (1 replies)