zxing

WebJar for zxing

Лицензия

Лицензия

Категории

Категории

ZXing Данные Data Formats Обработка изображений
Группа

Группа

org.webjars.npm
Идентификатор

Идентификатор

zxing
Последняя версия

Последняя версия

0.1.2
Дата

Дата

Тип

Тип

jar
Описание

Описание

zxing
WebJar for zxing
Ссылка на сайт

Ссылка на сайт

http://webjars.org
Система контроля версий

Система контроля версий

https://github.com/jesstelford/jsqrcode

Скачать zxing

Имя Файла Размер
zxing-0.1.2.pom
zxing-0.1.2.jar 47 KB
zxing-0.1.2-sources.jar 22 bytes
zxing-0.1.2-javadoc.jar 22 bytes
Обзор

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/org.webjars.npm/zxing/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>zxing</artifactId>
    <version>0.1.2</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/zxing/
implementation 'org.webjars.npm:zxing:0.1.2'
// https://jarcasting.com/artifacts/org.webjars.npm/zxing/
implementation ("org.webjars.npm:zxing:0.1.2")
'org.webjars.npm:zxing:jar:0.1.2'
<dependency org="org.webjars.npm" name="zxing" rev="0.1.2">
  <artifact name="zxing" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='zxing', version='0.1.2')
)
libraryDependencies += "org.webjars.npm" % "zxing" % "0.1.2"
[org.webjars.npm/zxing "0.1.2"]

Зависимости

Библиотека не имеет зависимостей. Это самодостаточное приложение, которое не зависит ни от каких других библиотек.

Модули Проекта

Данный проект не имеет модулей.

Deprecated

The zxing package is no longer maintained.

Please use the much more up to date qrcode-reader package.

JavaScript QRCode reader for HTML5 enabled browser

2011 Lazar Laszlo http://lazarsoft.info 2014 Jess Telford http://jes.st

Try it online: http://webqr.com

This is a port to npm of Lazar Laszlo's port of ZXing qrcode scanner, http://code.google.com/p/zxing.

Usage

qrcode = require('zxing');
qrcode.decode([uri, ]function(err, result) {
  if (err != null) {
    console.log(err); // Will output any errors found
    return;
  }
  console.log(result); // Will output the decoded information
});

If uri is not passed, will instead extract image data from a canvas element with id="qr-canvas"

[new from 2014.01.09] For webcam qrcode decoding (included in the test.html) you will need a browser with getUserMedia (WebRTC) capability.

Версии библиотеки

Версия
0.1.2
0.1.0