Is there an Aztec barcode generator library for JavaScript?

I am looking for generating an open source image script for Aztec barcodes (2D):

Aztec barcode

I don't seem to see any scripts available.

There is an Active-X control here that can only be used in IE and the image generator URL here , but this is not useful, as it should be a pure javascript solution running in webkit-based browsers that can work in disconnected mode for mobile apps.

Does anyone have some old code for this, hovering or written in javascript, or which can be ported to javascript?

Thanks.

+6
source share
1 answer

bwip-js works in any browser that supports <canvas> - IE 9+, FF 2+, Chrome, Safari 3+, Opera 9+ and Android 2.1+. It also runs server side in Node. (If you need lower-level IE support, try using <canvas> .)

Aztec is among the 83 barcodes that it can draw. Here is a demonstration of this in action .

+6
source

Source: https://habr.com/ru/post/910256/


All Articles