USB barcode reader in Qt4

后端 未结 3 963
我寻月下人不归
我寻月下人不归 2021-01-13 18:20

I was wondering how could I integrate a USB barcode scanner into a Qt application, as well as a barcode printer.

I looked for tutorials but didn\'t find anything int

3条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-01-13 19:14

    Most barcode scanners, IIRC basically work like a keyboard from the point of view of your application. You just provide a text field and the barcode reader "types" what it reads. So you don't really need to worry about that, other than validating the input and maybe providing a hidden text field if you don't want the input shown.

    Or a modal dialog saying "scan item" with focus on a hidden text area.

    In terms of a barcode printer, if you know the standard to which you are outputting, you would do well creating an SVG or PDF and exporting to print. This way your app can handle print dimensions and so on.

    You don't say what language you are using, so I can't find you a barcode writing library.

提交回复
热议问题