Address Labels with Glabels - Linux Tutorial

Поделиться
HTML-код
  • Опубликовано: 20 сен 2024

Комментарии • 8

  • @Anonymouzee
    @Anonymouzee 4 дня назад

    Kris... 11 ago you did an excellent tutorial.... 👌🤣

  • @1958indyfan
    @1958indyfan 2 года назад

    Thank you. The only question I have is about the alignment layout. I'll start playing with it and figure out how to center align the addresses. Thanks again. Big help.

  • @bobfl42
    @bobfl42 8 лет назад

    Thank you that was a great tutorial since I just D/L and was having a little bit of struggling., now all is well.

  • @bobturner3500
    @bobturner3500 2 года назад +1

    instead of inputting ${}, you could also click on 'insert merge field' and it will fill in what you need.

  • @Cilmaen
    @Cilmaen 11 лет назад

    Great tutorial. Thank you

  • @Thuliolima2008
    @Thuliolima2008 4 года назад

    hello do you have any software that replaces zebra designer for linux?

  • @FMFT
    @FMFT 5 лет назад

    Reading barcodes with a USB webcam on Linux?
    OK. Follow these steps…
    First, installed Zbar and a little program called “crikey”. The easy way. Open a terminal and type in:
    sudo apt-get install zbar-tools
    sudo apt-get install libx11-dev x11proto-xext-dev libxt-dev libxtst-dev
    wget www.shallowsky.com/software/crikey/crikey-0.8.3.tar.gz
    tar -xzf crikey-0.8.3.tar.gz
    cd crikey-0.8.3
    make
    sudo cp crikey /usr/local/bin
    cd
    clear
    clear
    Now hook up your USB webcam.
    Is your USB webcam supported by V4L1 (Video4Linux1)? Then, open again a terminal and type in:
    LD_PRELOAD=/usr/lib/libv4l/v4l1compat.so zbarcam -raw -prescale=320×240 /dev/video1 | crikey -i
    Now open Google or a Gedit instance, clic inside the search box, and put a barcode in front of your USB webcam. Focus in the barcode, as necessary. You will get the barcode number where you have clicked on before…
    Is your USB webcam supported by V4L2 (Video4Linux2)? Then, open a terminal and type in:
    zbarcam -raw -prescale=320×240 /dev/video0 | crikey -i
    If the above commands don’t work, try “video1”, instead of “video0”