Skip to main content

Python Versions PyPI version Travis status Coverage Status

A ctypes-based Python wrapper around the libdmtx datamatrix barcode reader.

The pydmtx wrapper is stuck in Python 2.x-land. This ctypes-based wrapper brings libdmtx to Python 2.7 and to Python 3.4 or greater.

Installation

The libdmtx DLLs are included with the Windows Python wheels. On other operating systems, you will need to install the libdmtx shared library.

On Mac OS X:

brew install libdmtx

On Linux:

sudo apt-get install libdmtx0a

Install this Python wrapper; use the second form to install dependencies of the read_datamatrix command-line script:

pip install pylibdmtx
pip install pylibdmtx[scripts]

Example usage

The decode function accepts instances of PIL.Image.

>>> from pylibdmtx.pylibdmtx import decode
>>> from PIL import Image
>>> decode(Image.open('pylibdmtx/tests/datamatrix.png'))
[Decoded(data='Stegosaurus', rect=Rect(left=5, top=6, width=96, height=95)),
 Decoded(data='Plesiosaurus', rect=Rect(left=298, top=6, width=95, height=95))]

It also accepts instances of numpy.ndarray, which might come from loading images using OpenCV.

>>> import cv2
>>> decode(cv2.imread('pylibdmtx/tests/datamatrix.png'))
[Decoded(data='Stegosaurus', rect=Rect(left=5, top=6, width=96, height=95)),
 Decoded(data='Plesiosaurus', rect=Rect(left=298, top=6, width=95, height=95))]

You can also provide a tuple (pixels, width, height)

>>> image = cv2.imread('pylibdmtx/tests/datamatrix.png')
>>> height, width = image.shape[:2]
>>> decode((image.tobytes(), width, height))
[Decoded(data='Stegosaurus', rect=Rect(left=5, top=6, width=96, height=95)),
 Decoded(data='Plesiosaurus', rect=Rect(left=298, top=6, width=95, height=95))]

Limitations

Feel free to submit a PR to address any of these.

  • decoding only - no encoding

  • I took the bone-headed approach of copying the logic in pydmtx’s decode function (in `pydmtxmodule.c <https://sourceforge.net/p/libdmtx/dmtx-wrappers/ci/master/tree/python/>`__); there might be more of libdmtx’s functionality that could be used to read barcodes

  • I exposed the bare minimum of functions, defines, enums and typedefs neede to reimplement pydmtx’s decode function

License

pylibdmtx is distributed under the MIT license (see LICENCE.txt). The libdmtx shared library is distributed under the Simplified BSD license (see libdmtx-LICENCE.txt).

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

pylibdmtx-0.1.2-py2.py3-none-win_amd64.whl (60.0 kB view details)

Uploaded Python 2Python 3Windows x86-64

pylibdmtx-0.1.2-py2.py3-none-win32.whl (52.3 kB view details)

Uploaded Python 2Python 3Windows x86

pylibdmtx-0.1.2-py2.py3-none-any.whl (17.5 kB view details)

Uploaded Python 2Python 3

File details

Details for the file pylibdmtx-0.1.2-py2.py3-none-win_amd64.whl.

File metadata

File hashes

Hashes for pylibdmtx-0.1.2-py2.py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 c8d24d9f4549452afba53450d187139562e868b66a6d7dc4d36d6c8f1641cf5d
MD5 3f1da3f6ea186a9e57b9266b271841c2
BLAKE2b-256 38bfa8c4b736efa087e0124b732193db7d3ff6bc11d5698fdbe79a632b45b0f0

See more details on using hashes here.

File details

Details for the file pylibdmtx-0.1.2-py2.py3-none-win32.whl.

File metadata

File hashes

Hashes for pylibdmtx-0.1.2-py2.py3-none-win32.whl
Algorithm Hash digest
SHA256 33dfb996be9aacb8d82ad303b4380490faa6f625a89a6cd522171eed4bcb98a8
MD5 03ad7d5216e104ac1d0551dd9997f5f3
BLAKE2b-256 793ae0b4530b5f92a7b2262c338a592391b38f838fc8059729c4a401248d9ab2

See more details on using hashes here.

File details

Details for the file pylibdmtx-0.1.2-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for pylibdmtx-0.1.2-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 3c1342f422f142e8d3dfd1d16a6656eb906c21d759223ed7d4f4959b22c6248a
MD5 ee71fb610b02582c6bd86f1b0df78c01
BLAKE2b-256 331613490614fe582bfbecbf7a88ed23a055bf7b3410022ef8e328fce38270b7

See more details on using hashes here.

Release history Release notifications | RSS feed

0.1.10

3 files

0.1.9

3 files

0.1.8

3 files

0.1.7

3 files

0.1.6

3 files

0.1.5

3 files

0.1.4

3 files

0.1.3

3 files

This release

0.1.2 This release

3 files

0.1.1

3 files

0.1.0

3 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page