printing onto avery labels

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
bikegeek

printing onto avery labels

Post 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
User avatar
anthony
Posts: 8883
Joined: 2004-05-31T19:27:03-07:00
Authentication code: 8675308
Location: Brisbane, Australia

Re: printing onto avery labels

Post by anthony »

I think at this point some pointers to input examples and what is desired will be helpful.
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
Post Reply