{% extends "layout.html" %} {% block title %}Generate Barcodes - KCAP Demo Server{% endblock %} {% block content %}

Generate Barcodes for Product: {{ product_id }}

Back to Products
{% if not dependencies.qrcode or not dependencies.barcode or not dependencies.pillow %}

Missing Dependencies

Some barcode generation features are unavailable because required packages are not installed:

    {% if not dependencies.qrcode %}
  • QR Code: The 'qrcode' package is required for QR code generation
  • {% endif %} {% if not dependencies.barcode %}
  • Barcodes: The 'python-barcode' package is required for EAN-13 and Code 128 generation
  • {% endif %} {% if not dependencies.pillow %}
  • Image Processing: The 'Pillow' package is required for image processing
  • {% endif %}

To install the required dependencies, run: pip install -r requirements.txt

{% endif %}

QR Code

QR Code

QR Code contains a link to the product AR info.

Download QR Code

EAN-13 Barcode

EAN-13 Barcode

Standard EAN-13 barcode format.

Download EAN-13

Code 128 Barcode

Code 128 Barcode

High-density alphanumeric barcode.

Download Code 128

Product Information

Product ID: {{ product_id }}

Price: {{ product.price }}

{% if product.image %} Product Image {% else %}

No product image available

{% endif %}

Print All Codes

Use the button below to open a printable version of all barcodes for this product.

{% endblock %} {% block extra_css %} {% endblock %}