What the hell is that? I don't know, wanna find out? Just write here lol Hier ist unser Pad für PaperBak und Co., begonnen am 04.11.2015 https://github.com/ZBar/ZBar ./configure Dann habe ich von software.opensuse.org "zbar" geladen, das enthält zbarimg und dmtxwrite? Sind die in irgendwelchen standard-suse-paketen dabei oder hast du diese selbstgebaut? https://github.com/dmtx/dmtx-utils Ich habe mich mit QR- und Datamatrix beschäftigt. Gebe jetzt erstmal auf. Anbei ein Testprogramm, darin habe ich meine bisher gefundenen Probleme aufgeführt. Übrigens: Die Datendichte mit QR oder DMTX ist nicht so hoch wie bei Paperbak... das Thema legen wir erstmal zur Seite. "If you have a good laser printer with the 600 dpi resolution, you can save up to 500,000 bytes of uncompressed data on the single A4/Letter sheet. Integrated packer allows for much better data density - up to 3,000,000+ (three megabytes) of C code per page." #!/bin/bash # coding and decoding of a file into QR- or Datamatrix-codes # codecode.sh # Literature / sources: # https://www.mail-archive.com/gnupg-users@gnupg.org/msg10827.html # https://schnouki.net/posts/2010/03/22/howto-backup-your-gnupg-secret-key-on-paper/ # https://www.piggott.me.uk/2015/05/20/paper-ssh-gpg-key-backups/ # http://blog.liw.fi/posts/qr-backup/ # http://www.grant-trebbin.com/2015/05/encode-and-decode-file-backed-up-as.html # QR code qrchunk=1024 split -a 2 -b $qrchunk -d $1 $1.chunk- for file in ./$1.chunk-*; do qrencode -8 -l M -o $file.png < $file; rm $file; done montage -label '%f' $1.chunk-*.png -geometry '1x1<' -tile 2x $1-qr.png # 2x3 pro Seite (image) # montage -label '%f' $1.chunk-*.png -geometry '1x1<' -tile 2x3 $1-qr.png rm $1.chunk-*.png # QR decode zbarimg --raw $(ls $1-qr*.png | sort -n) > $1_qr-decoded # Problem 1: $1_qr-decoded != $1 # Datamatrix code dmtxchunk=512 split -a 2 -b $dmtxchunk -d $1 $1.chunk- for file in ./$1.chunk-*; do dmtxwrite -e 8 $file > $file.png; rm $file; done montage -label '%f' $1.chunk-*.png -geometry '1x1<' -tile 2x $1-dmtx.png # 2x3 pro Seite (image) # montage -label '%f' $1.chunk-*.png -geometry '1x1<' -tile 2x3 $1-dmtx.png rm $1.chunk-*.png # Datamatrix decode # Problem 2: dmtxread kann nicht mehrere image files einlesen # Problem 3: dmtxread hat auch Probleme, wenn mehrere (oder zu viele?) Datamatrix-Codes in einem Image sind # dmtxread $(ls $1-dmtx*.png | sort -n) > $1_dmtx-decoded test