Page 1 of 1

printing onto avery labels

Posted: 2009-07-11T03:14:41-07:00
by bikegeek
Hi All;

I'm trying to create a page of barcode label to print onto avery label L7156. I've got a script which reads the MySQL database of my POS system and spits out a encap. postscript file with the correct dimensions for each individual label. I then need to output a page with the correct margins and layout of the image at the moment I'm using

for i in code_*.ps ; do convert -density 600 $i -resize 50% $i.png;done
montage code_*.png -tile 3x15 -geometry '1x1+16.5+0<' -page A4 output.png

Which sort of works, but the top and bottm margin and non existent, and ideally I'd like to run only one command to produce page(s) of labels

Can any sage provide some tips?

Thanks

Joel

Re: printing onto avery labels

Posted: 2009-07-12T22:30:51-07:00
by anthony
I think at this point some pointers to input examples and what is desired will be helpful.