KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
zbar-ctypes
★ 10
Open GitHub ↗
ZBar wrapper for Python 3
Download README (.md)
Explore Similar Repositories
node-arma-server
:
Wrapper for starting arma servers
rubygems-tracker
:
Track gems download statistics.
shared_slice
:
&[T] minus lifetimes
react-markdown-to-html
:
React Component that converts a Markdown file to HTML
rails_admin_aasm
:
rails admin aasm integration
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
zbar-ctypes
?
Download (.md)
# ZBar The zbar-ctypes package is a wrapper around the ZBar barcode scanner library. ** This package is for Python 3 only. ** ### Scanning a PIL Image ``` import zbar scanner = zbar.ImageScanner() # disable qr code scanning (all symbol formats on by default) scanner.set_config(zbar.SymbolType.QRCODE, zbar.Config.ENABLE, 0) image = Image.open(path) codes = scanner.scan_pil_image(image) ```