Python之ReportLab绘制条形码和二维码的实例


Posted in Python onJanuary 15, 2018

条形码和二维码

#引入所需要的基本包
from reportlab.pdfgen import canvas
from reportlab.graphics.barcode import code39, code128, code93
from reportlab.graphics.barcode import eanbc, qr, usps
from reportlab.graphics.shapes import Drawing 
from reportlab.lib.units import mm
from reportlab.graphics import renderPDF
#----------------------------------------------------------------------
def createBarCodes(c):
  barcode_value = "1234567890"
  barcode39 = code39.Extended39(barcode_value)
  barcode39Std = code39.Standard39(barcode_value, barHeight=20, stop=1)
  # code93 also has an Extended and MultiWidth version
  barcode93 = code93.Standard93(barcode_value)
  barcode128 = code128.Code128(barcode_value)
  # the multiwidth barcode appears to be broken 
  #barcode128Multi = code128.MultiWidthBarcode(barcode_value)
  barcode_usps = usps.POSTNET("50158-9999")
  codes = [barcode39, barcode39Std, barcode93, barcode128, barcode_usps]
  x = 1 * mm
  y = 285 * mm
  for code in codes:
    code.drawOn(c, x, y)
    y = y - 15 * mm
  # draw the eanbc8 code
  barcode_eanbc8 = eanbc.Ean8BarcodeWidget(barcode_value)
  d = Drawing(50, 10)
  d.add(barcode_eanbc8)
  renderPDF.draw(d, c, 15, 555)
  # draw the eanbc13 code
  barcode_eanbc13 = eanbc.Ean13BarcodeWidget(barcode_value)
  d = Drawing(50, 10)
  d.add(barcode_eanbc13)
  renderPDF.draw(d, c, 15, 465)
  # draw a QR code
  qr_code = qr.QrCodeWidget('http://blog.csdn.net/webzhuce')
  bounds = qr_code.getBounds()
  width = bounds[2] - bounds[0]
  height = bounds[3] - bounds[1]
  d = Drawing(45, 45, transform=[45./width,0,0,45./height,0,0])
  d.add(qr_code)
  renderPDF.draw(d, c, 15, 405)
#定义要生成的pdf的名称
c=canvas.Canvas("barcodes.pdf")
#调用函数生成条形码和二维码,并将canvas对象作为参数传递
createBarCodes(c)
#showPage函数:保存当前页的canvas
c.showPage()
#save函数:保存文件并关闭canvas
c.save()

运行结果:

Python之ReportLab绘制条形码和二维码的实例

以上这篇Python之ReportLab绘制条形码和二维码的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Python 相关文章推荐
Python中动态获取对象的属性和方法的教程
Apr 09 Python
Django框架中方法的访问和查找
Jul 15 Python
Python中的字典与成员运算符初步探究
Oct 13 Python
Python实现批量检测HTTP服务的状态
Oct 27 Python
Python中datetime模块参考手册
Jan 13 Python
Python获取某一天是星期几的方法示例
Jan 17 Python
对Python中一维向量和一维向量转置相乘的方法详解
Aug 26 Python
python 实现二维列表转置
Dec 02 Python
在win64上使用bypy进行百度网盘文件上传功能
Jan 02 Python
Pandas读取csv时如何设置列名
Jun 02 Python
详解Django中views数据查询使用locals()函数进行优化
Aug 24 Python
Python命令行参数定义及需要注意的地方
Nov 30 Python
Tornado高并发处理方法实例代码
Jan 15 #Python
使用Python实现windows下的抓包与解析
Jan 15 #Python
Python实现可获取网易页面所有文本信息的网易网络爬虫功能示例
Jan 15 #Python
Python操作mysql数据库实现增删查改功能的方法
Jan 15 #Python
使用python编写简单的小程序编译成exe跑在win10上
Jan 15 #Python
python逆向入门教程
Jan 15 #Python
Python3一行代码实现图片文字识别的示例
Jan 15 #Python
You might like
不用数据库的多用户文件自由上传投票系统(2)
2006/10/09 PHP
PHP读取txt文本文件并分页显示的方法
2015/03/11 PHP
php实现模拟登陆方正教务系统抓取课表
2015/05/19 PHP
在JavaScript中获取请求的URL参数[正则]
2010/12/25 Javascript
js实现图片上传并正常显示
2015/12/19 Javascript
jQuery与JS加载事件用法分析
2016/09/04 Javascript
Javascript中的 “&” 和 “|” 详解
2017/02/02 Javascript
Vue 父子组件、组件间通信
2017/03/08 Javascript
详解React 在服务端渲染的实现
2017/11/16 Javascript
Angular @HostBinding()和@HostListener()用法
2018/03/05 Javascript
微信小程序 腾讯地图显示偏差问题解决
2019/07/27 Javascript
简单了解常用的JavaScript 库
2020/07/16 Javascript
解决Vue keep-alive 调用 $destory() 页面不再被缓存的情况
2020/10/30 Javascript
python通过exifread模块获得图片exif信息的方法
2015/03/16 Python
windows下安装Python和pip终极图文教程
2017/03/05 Python
pygame实现弹力球及其变速效果
2017/07/03 Python
python使用super()出现错误解决办法
2017/08/14 Python
教你用Python写安卓游戏外挂
2018/01/11 Python
python命令行解析之parse_known_args()函数和parse_args()使用区别介绍
2018/01/24 Python
Python 查找list中的某个元素的所有的下标方法
2018/06/27 Python
python 遍历目录(包括子目录)下所有文件的实例
2018/07/11 Python
Python实现12306火车票抢票系统
2019/07/04 Python
深入了解Django中间件及其方法
2019/07/26 Python
美国医生配方营养补充剂供应商:Healthy Directions
2019/07/10 全球购物
豪华床上用品 :Jennifer Adams
2019/09/15 全球购物
澳大利亚美容产品及化妆品在线:Activeskin
2020/06/03 全球购物
生物技术专业研究生自荐信
2013/09/22 职场文书
社区志愿者心得体会
2014/01/03 职场文书
自主招生自荐信指南
2014/02/04 职场文书
安全保卫工作竞聘材料
2014/08/25 职场文书
一般党员对照检查材料
2014/09/24 职场文书
房屋买卖协议书范本
2014/09/27 职场文书
六查六看自查报告
2014/10/14 职场文书
2015年专项整治工作总结
2015/04/03 职场文书
幼儿园元旦主持词
2015/07/06 职场文书
Nginx反向代理学习实例教程
2021/10/24 Servers