Metadata-Version: 2.4
Name: barcode-qr-code-sdk
Version: 11.2.1000
Summary: Barcode and QR code scanning SDK for Python
Home-page: https://github.com/yushulx/python-barcode-qrcode-sdk
Author: yushulx
License: MIT
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: Science/Research
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: MacOS
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Software Development
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: opencv-python
Requires-Dist: dynamsoft-capture-vision-bundle
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: requires-dist
Dynamic: summary

# Python 1D/2D Barcode SDK
A Python wrapper for the [Dynamsoft Barcode Reader SDK](https://www.dynamsoft.com/barcode-reader/overview/), providing simple and user-friendly APIs across **Windows**, **Linux**, and **macOS**. Compatible with desktop PCs, embedded devices, **Raspberry Pi**, and **Jetson Nano**.

> **Note**: This is an unofficial, community-maintained wrapper. For official support and full feature coverage, consider the [Dynamsoft Capture Vision Bundle](https://pypi.org/project/dynamsoft-capture-vision-bundle/) on PyPI.

## 🚀 Quick Links

- 📖 [Official Documentation](https://www.dynamsoft.com/capture-vision/docs/server/programming/python/)
- 🔑 [Get 30-day FREE trial license](https://www.dynamsoft.com/customer/license/trialLicense/?product=dcv&package=cross-platform)
- 📦 [Official Python Package](https://pypi.org/project/dynamsoft-capture-vision-bundle/)

## 📊 Comparison: Community vs Official

| Feature | Community Wrapper | Official Dynamsoft SDK |
|---------|------------------|------------------------|
| **Support** | Community-driven | ✅ Official Dynamsoft support |
| **Documentation** | Basic README and limited examples | ✅ Comprehensive online documentation |
| **API Coverage** | Core features only | ✅ Full API coverage |
| **Updates** | May lag behind | ✅ Always includes the latest features |
| **Testing** | Tested in limited environments | ✅ Thoroughly tested |
| **API Usage** | ✅ Simple and intuitive | More complex and verbose|

## 🔧 Installation

### Requirements
- **Python 3.x**
- **OpenCV** (for UI display)

    ```bash
    pip install opencv-python
    ```
- Dynamsoft Capture Vision Bundle SDK
  
    ```bash
    pip install dynamsoft-capture-vision-bundle
    ```

### Build from Source
```bash
# Source distribution
python setup.py sdist

# Build wheel
python setup.py bdist_wheel
```


## 🎯 Quick Start

### 🔑 Initialize License
```python
import barcodeQrSDK

# Initialize with trial license
error_code, error_msg = barcodeQrSDK.initLicense("LICENSE-KEY")

if error_code != 0:
    print(f"License error: {error_msg}")
    exit()
```

### 📷 Basic Image Processing
```python
# Create reader instance
reader = barcodeQrSDK.createInstance()

# Decode from file
results = reader.decodeFile("barcode_image.jpg")

# Process results
for barcode in results:
    print(f"Format: {barcode.format}")
    print(f"Text: {barcode.text}")
    print(f"Location: ({barcode.x1}, {barcode.y1}), ({barcode.x2}, {barcode.y2}), ({barcode.x3}, {barcode.y3}), ({barcode.x4}, {barcode.y4})")
```

### 🎥 Real-time Camera Processing
```python
import cv2
import numpy as np

detected_barcodes = []

def on_barcode_detected(barcodes):
    """Callback function for async detection"""
    global detected_barcodes
    detected_barcodes = barcodes
    for barcode in barcodes:
        print(f"Detected: {barcode.text} ({barcode.format})")

def main():
    # Initialize
    barcodeQrSDK.initLicense("YOUR_LICENSE_KEY")
    reader = barcodeQrSDK.createInstance()
    
    # Start async detection
    reader.addAsyncListener(on_barcode_detected)
    
    # Camera capture loop
    cap = cv2.VideoCapture(0)
    
    while True:
        ret, frame = cap.read()
        if not ret:
            break
            
        # Send frame for async processing
        reader.decodeMatAsync(frame)
        
        # Draw detection results
        for barcode in detected_barcodes:
            # Draw bounding box
            points = np.array([
                [barcode.x1, barcode.y1], [barcode.x2, barcode.y2],
                [barcode.x3, barcode.y3], [barcode.x4, barcode.y4]
            ], dtype=np.int32)
            
            cv2.drawContours(frame, [points], -1, (0, 255, 0), 2)
            cv2.putText(frame, barcode.text, (barcode.x1, barcode.y1), 
                       cv2.FONT_HERSHEY_SIMPLEX, 0.8, (0, 255, 0), 2)
        
        cv2.imshow('Barcode Scanner', frame)
        
        if cv2.waitKey(1) & 0xFF == ord('q'):
            break
    
    # Cleanup
    reader.clearAsyncListener()
    cap.release()
    cv2.destroyAllWindows()

if __name__ == '__main__':
    main()
```

## 📱 Command Line Usage

```bash
# Basic scanning
scanbarcode image.jpg -l YOUR_LICENSE_KEY

# With visual display
scanbarcode image.jpg -u 1 -l YOUR_LICENSE_KEY
```

![Python Barcode Scanner](https://www.dynamsoft.com/codepool/img/2022/08/python-scan-barcode.png)


## 📚 API Reference

### 🏗️ Core Functions

#### `initLicense(licenseKey: str) -> tuple`
Initialize the SDK with your license key.

```python
error_code, error_msg = barcodeQrSDK.initLicense("YOUR_LICENSE_KEY")
```

**Returns:** `(error_code: int, error_message: str)`

#### `createInstance() -> BarcodeReader`
Create a new barcode reader instance.

```python
reader = barcodeQrSDK.createInstance()
```

### 🔍 BarcodeReader Class

#### Synchronous Detection

##### `decodeFile(file_path: str) -> list`
Decode barcodes from an image file.

```python
results = reader.decodeFile("path/to/image.jpg")
```

**Supported formats:** JPEG, PNG, BMP, TIFF, GIF

##### `decodeMat(mat) -> list`
Decode barcodes from an OpenCV image matrix.

```python
import cv2
image = cv2.imread("image.jpg")
results = reader.decodeMat(image)
```

##### `decodeBytes(bytes, width, height, stride, pixel_format) -> list`
Decode barcodes from raw image bytes.

```python
from dynamsoft_capture_vision_bundle import EnumImagePixelFormat

results = reader.decodeBytes(
    image_bytes, 640, 480, 1920, 
    EnumImagePixelFormat.IPF_RGB_888
)
```

#### Asynchronous Detection

##### `addAsyncListener(callback) -> None`
Start real-time barcode detection with callback.

```python
def on_detection(barcodes):
    for barcode in barcodes:
        print(f"Found: {barcode.text}")

reader.addAsyncListener(on_detection)
```

##### `decodeMatAsync(mat) -> None`
Process OpenCV image asynchronously.

```python
reader.decodeMatAsync(camera_frame)
```

##### `decodeBytesAsync(bytes, width, height, stride, pixel_format) -> None`
Process raw bytes asynchronously.

```python
reader.decodeBytesAsync(raw_bytes, width, height, stride, pixel_format)
```

##### `clearAsyncListener() -> None`
Stop async detection and cleanup.

```python
reader.clearAsyncListener()
```

#### Configuration

##### `getParameters() -> str`
Get current detection parameters as JSON.

```python
params_json = reader.getParameters()
```

##### `setParameters(params: str) -> tuple`
Set detection parameters from JSON.

```python
error_code, error_msg = reader.setParameters(modified_params)
```

### 📦 BarcodeResult Class

Each detected barcode returns a `BarcodeResult` object with:

```python
class BarcodeResult:
    text: str           # Decoded text content
    format: str         # Barcode format (e.g., "QR_CODE", "CODE_128")
    
    # Corner coordinates 
    x1, y1: float      
    x2, y2: float      
    x3, y3: float      
    x4, y4: float      
```

### 🛠️ Utility Functions

#### `convertMat2ImageData(mat) -> ImageData`
Convert OpenCV matrix to SDK format.

```python
image_data = barcodeQrSDK.convertMat2ImageData(cv_image)
```


## Supported Barcode Symbologies
- Linear Barcodes (1D)

    - Code 39 (including Code 39 Extended)
    - Code 93
    - Code 128
    - Codabar
    - Interleaved 2 of 5
    - EAN-8
    - EAN-13
    - UPC-A
    - UPC-E
    - Industrial 2 of 5

- 2D Barcodes:
    - QR Code (including Micro QR Code)
    - Data Matrix
    - PDF417 (including Micro PDF417)
    - Aztec Code
    - MaxiCode (mode 2-5)

- Patch Code
- GS1 Composite Code
