Advertisement
NubeColectiva

Cómo Crear Un Código de Barras con Python

Aug 27th, 2024
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.45 KB | Source Code | 0 0
  1. # Cómo Crear Un Código de Barras con Python
  2.  
  3. import barcode # pip install python-barcode
  4. from barcode.writer import ImageWriter
  5. from IPython.display import Image, display # pip install ipython
  6.  
  7. formato_cb = barcode.get_barcode_class('ean13')
  8. numero_cb = '123456789876'
  9. imagen_cb = formato_cb(numero_cb, writer= ImageWriter())
  10. nombre_archivo_cb = 'codigo_barras'
  11. imagen_cb.save(nombre_archivo_cb)
  12.  
  13. display(Image(filename=f'{nombre_archivo_cb}.png'))
Tags: python
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement