--- title: Barcode Generation --- ## Barcode Generation Both [report](../report) and [label](../labels) templates can render custom barcode data to in-line images. !!! info "img" Barcode data must be rendered inside an `` tag. Inside the template file (whether it be for printing a label or generating a custom report), the following code will need to be included at the top of the template file: ```html {% raw %} {% load barcode %} {% endraw %} ``` ### 1D Barcode !!! info "python-barcode" One dimensional barcodes (e.g. Code128) are generated using the [python-barcode](https://pypi.org/project/python-barcode/) library. To render a 1D barcode, use the `barcode` template tag, as shown in the example below: ```html {% raw %} {% load barcode %} {% endraw %} ``` The default barcode renderer will generate a barcode using [Code128](https://en.wikipedia.org/wiki/Code_128) rendering. However [other barcode formats](https://python-barcode.readthedocs.io/en/stable/codes.html) are also supported: ```html {% raw %} {% load barcode %} {% endraw %} ```