Close

Fading labels

A project log for Store.bin

Cheap inventory solution

jlamJLAM 12/13/2018 at 05:190 Comments

So the main issue with laser printed labels is that the table paper is fairly thing and I suspect that prevents the toner from fusing properly. This leads to the pixels essentially falling off the label.

This just wont do for an inventory system. Luckily I can across a nice cheap label printer, the Dymo LabelManager® PnP ($35 on amazon at time of writing). Next step was to make it print usable labels.

The printer seems to have two modes, and for it to work with the Linux driver I had to follow a really useful set of instructions here: http://draisberghof.de/usb_modeswitch/bb/viewtopic.php?f=3&t=947


After that, it was just a matter of getting pixel accurate prints from this printer. I printed a set of test prints generated in inkscape to count measure the performance and settings of the printer:

The steps I followed where (from bottom up:

  1. generate a diagonal and count the steps
  2. use shallower angles to get a better count
  3. once I have a good guess create test print with 1-3 pixel and 1-3 pixel gaps as well as diagonals
  4. realise  that the vector printing worked awful and the bitmap with high DPI worked better
  5. tune in the DPI and the exact pixel counts by seeing how much of the test pattern was cut off
  6. print extreme stress with a pixel size checkerboard
  7. print a new test pattern with the wrong settings
  8. print it again with the right settings and realise there where still missing pixels
  9. the printer has 64 pixels and the lead to a DPI of 540
  10. print the test print with DPI of 540 and we have a perfect print :)

I will have the template inkscape file uploaded somewhere with the pixel boundary marked by the grid. The fiel should be printed with a bitmap rendering at 540 DPI.

#!/bin/bash

for i in $(seq -f "%05g" 0 20)
do
  qrencode -s 3 -m 0 -t PNG  $i -o $i.png
  convert $i.png -gravity East -splice 129x0 -font Helvetica-Narrow -pointsize 52 -annotate +0+0 $i $i.png 
  echo $i
done
montage *.png -tile 1x -geometry '+0+24>' page.pdf
convert page.pdf -units PixelsPerInch -density 540 page.pdf

#to print
lpr page.pdf

 The above script generates the QR codes and then sends them straight to the label printer with the help of CUPS.



And here we have durable new labels :D

Discussions