python reportlab 生成多页pdf

多页

from reportlab.pdfgen import canvas
from reportlab.platypus import (SimpleDocTemplate, Paragraph, PageBreak, Image, Spacer, Table, TableStyle)
from reportlab.lib.enums import TA_LEFT, TA_RIGHT, TA_CENTER, TA_JUSTIFY
from reportlab.lib.styles import ParagraphStyle, getSampleStyleSheet
from reportlab.lib.pagesizes import LETTER, inch
from reportlab.graphics.shapes import Line, LineShape, Drawing
from reportlab.lib.colors import Colorclass FooterCanvas(canvas.Canvas):def __init__(self, *args, **kwargs):canvas.Canvas.__init__(self, *args, **kwargs)self.pages = []self.width, self.height = LETTERdef showPage(self):self.pages.append(dict(self.__dict__))self._startPage()def save(self):page_count = len(self.pages)for page in self.pages:self.__dict__.update(page)if (self._pageNumber > 1):self.draw_canvas(page_count)canvas.Canvas.showPage(self)canvas.Canvas.save(self)def draw_canvas(self, page_count):page = "Page %s of %s" % (self._pageNumber, page_count)x = 128self.saveState()self.setStrokeColorRGB(0, 0, 0)self.setLineWidth(0.5)self.drawImage("python_logo.png", self.width - inch * 8 - 5, self.height - 50, width=100, height=20,preserveAspectRatio=True)self.drawImage("python_logo.png", self.width - inch * 2, self.height - 50, width=100, height=30,preserveAspectRatio=True, mask='auto')self.line(30, 740, LETTER[0] - 50, 740)self.line(66, 78, LETTER[0] - 66, 78)self.setFont('Times-Roman', 10)self.drawString(LETTER[0] - x, 65, page)self.restoreState()class PDFPSReporte:def __init__(self, path):self.path = pathself.styleSheet = getSampleStyleSheet()self.elements = []# colors - Azul turkeza 367AB3self.colorOhkaGreen0 = Color((45.0 / 255), (166.0 / 255), (153.0 / 255), 1)self.colorOhkaGreen1 = Color((182.0 / 255), (227.0 / 255), (166.0 / 255), 1)self.colorOhkaGreen2 = Color((140.0 / 255), (222.0 / 255), (192.0 / 255), 1)# self.colorOhkaGreen2 = Color((140.0/255), (222.0/255), (192.0/255), 1)self.colorOhkaBlue0 = Color((54.0 / 255), (122.0 / 255), (179.0 / 255), 1)self.colorOhkaBlue1 = Color((122.0 / 255), (180.0 / 255), (225.0 / 255), 1)self.colorOhkaGreenLineas = Color((50.0 / 255), (140.0 / 255), (140.0 / 255), 1)self.firstPage()self.nextPagesHeader(True)self.remoteSessionTableMaker()self.nextPagesHeader(False)self.inSiteSessionTableMaker()self.nextPagesHeader(False)self.extraActivitiesTableMaker()self.nextPagesHeader(False)self.summaryTableMaker()# Buildself.doc = SimpleDocTemplate(path, pagesize=LETTER)self.doc.multiBuild(self.elements, canvasmaker=FooterCanvas)def firstPage(self):img = Image('python_logo.png', kind='proportional')img.drawHeight = 0.5 * inchimg.drawWidth = 2.4 * inchimg.hAlign = 'LEFT'self.elements.append(img)spacer = Spacer(30, 100)self.elements.append(spacer)img = Image('python_logo.png')img.drawHeight = 2.5 * inchimg.drawWidth = 5.5 * inchself.elements.append(img)spacer = Spacer(10, 250)self.elements.append(spacer)psDetalle = ParagraphStyle('Resumen', fontSize=9, leading=14, justifyBreaks=1, alignment=TA_LEFT,justifyLastLine=1)text = """REPORTE DE SERVICIOS PROFESIONALES<br/>Empresa: Nombre del Cliente<br/>Fecha de Inicio: 23-Oct-2019<br/>Fecha de actualización: 01-Abril-2020<br/>"""paragraphReportSummary = Paragraph(text, psDetalle)self.elements.append(paragraphReportSummary)self.elements.append(PageBreak())def nextPagesHeader(self, isSecondPage):if isSecondPage:psHeaderText = ParagraphStyle('Hed0', fontSize=16, alignment=TA_LEFT, borderWidth=3,textColor=self.colorOhkaGreen0)text = 'REPORTE DE SESIONES'paragraphReportHeader = Paragraph(text, psHeaderText)self.elements.append(paragraphReportHeader)spacer = Spacer(10, 10)self.elements.append(spacer)d = Drawing(500, 1)line = Line(-15, 0, 483, 0)line.strokeColor = self.colorOhkaGreenLineasline.strokeWidth = 2d.add(line)self.elements.append(d)spacer = Spacer(10, 1)self.elements.append(spacer)d = Drawing(500, 1)line = Line(-15, 0, 483, 0)line.strokeColor = self.colorOhkaGreenLineasline.strokeWidth = 0.5d.add(line)self.elements.append(d)spacer = Spacer(10, 22)self.elements.append(spacer)def remoteSessionTableMaker(self):psHeaderText = ParagraphStyle('Hed0', fontSize=12, alignment=TA_LEFT, borderWidth=3,textColor=self.colorOhkaBlue0)text = 'SESIONES REMOTAS'paragraphReportHeader = Paragraph(text, psHeaderText)self.elements.append(paragraphReportHeader)spacer = Spacer(10, 22)self.elements.append(spacer)"""Create the line items"""d = []textData = ["No.", "Fecha", "Hora Inicio", "Hora Fin", "Tiempo Total"]fontSize = 8centered = ParagraphStyle(name="centered", alignment=TA_CENTER)for text in textData:ptext = "<font size='%s'><b>%s</b></font>" % (fontSize, text)titlesTable = Paragraph(ptext, centered)d.append(titlesTable)data = [d]lineNum = 1formattedLineData = []alignStyle = [ParagraphStyle(name="01", alignment=TA_CENTER),ParagraphStyle(name="02", alignment=TA_LEFT),ParagraphStyle(name="03", alignment=TA_CENTER),ParagraphStyle(name="04", alignment=TA_CENTER),ParagraphStyle(name="05", alignment=TA_CENTER)]for row in range(10):lineData = [str(lineNum), "Miércoles, 11 de diciembre de 2019","17:30", "19:24", "1:54"]# data.append(lineData)columnNumber = 0for item in lineData:ptext = "<font size='%s'>%s</font>" % (fontSize - 1, item)p = Paragraph(ptext, alignStyle[columnNumber])formattedLineData.append(p)columnNumber = columnNumber + 1data.append(formattedLineData)formattedLineData = []# Row for totaltotalRow = ["Total de Horas", "", "", "", "30:15"]for item in totalRow:ptext = "<font size='%s'>%s</font>" % (fontSize - 1, item)p = Paragraph(ptext, alignStyle[1])formattedLineData.append(p)data.append(formattedLineData)# print(data)table = Table(data, colWidths=[50, 200, 80, 80, 80])tStyle = TableStyle([  # ('GRID',(0, 0), (-1, -1), 0.5, grey),('ALIGN', (0, 0), (0, -1), 'LEFT'),# ('VALIGN', (0, 0), (-1, -1), 'TOP'),("ALIGN", (1, 0), (1, -1), 'RIGHT'),('LINEABOVE', (0, 0), (-1, -1), 1, self.colorOhkaBlue1),('BACKGROUND', (0, 0), (-1, 0), self.colorOhkaGreenLineas),('BACKGROUND', (0, -1), (-1, -1), self.colorOhkaBlue1),('SPAN', (0, -1), (-2, -1))])table.setStyle(tStyle)self.elements.append(table)def inSiteSessionTableMaker(self):self.elements.append(PageBreak())psHeaderText = ParagraphStyle('Hed0', fontSize=12, alignment=TA_LEFT, borderWidth=3,textColor=self.colorOhkaBlue0)text = 'SESIONES EN SITIO'paragraphReportHeader = Paragraph(text, psHeaderText)self.elements.append(paragraphReportHeader)spacer = Spacer(10, 22)self.elements.append(spacer)"""Create the line items"""d = []textData = ["No.", "Fecha", "Hora Inicio", "Hora Fin", "Tiempo Total"]fontSize = 8centered = ParagraphStyle(name="centered", alignment=TA_CENTER)for text in textData:ptext = "<font size='%s'><b>%s</b></font>" % (fontSize, text)titlesTable = Paragraph(ptext, centered)d.append(titlesTable)data = [d]lineNum = 1formattedLineData = []alignStyle = [ParagraphStyle(name="01", alignment=TA_CENTER),ParagraphStyle(name="02", alignment=TA_LEFT),ParagraphStyle(name="03", alignment=TA_CENTER),ParagraphStyle(name="04", alignment=TA_CENTER),ParagraphStyle(name="05", alignment=TA_CENTER)]for row in range(10):lineData = [str(lineNum), "Miércoles, 11 de diciembre de 2019","17:30", "19:24", "1:54"]# data.append(lineData)columnNumber = 0for item in lineData:ptext = "<font size='%s'>%s</font>" % (fontSize - 1, item)p = Paragraph(ptext, alignStyle[columnNumber])formattedLineData.append(p)columnNumber = columnNumber + 1data.append(formattedLineData)formattedLineData = []# Row for totaltotalRow = ["Total de Horas", "", "", "", "30:15"]for item in totalRow:ptext = "<font size='%s'>%s</font>" % (fontSize - 1, item)p = Paragraph(ptext, alignStyle[1])formattedLineData.append(p)data.append(formattedLineData)# print(data)table = Table(data, colWidths=[50, 200, 80, 80, 80])tStyle = TableStyle([  # ('GRID',(0, 0), (-1, -1), 0.5, grey),('ALIGN', (0, 0), (0, -1), 'LEFT'),# ('VALIGN', (0, 0), (-1, -1), 'TOP'),("ALIGN", (1, 0), (1, -1), 'RIGHT'),('LINEABOVE', (0, 0), (-1, -1), 1, self.colorOhkaBlue1),('BACKGROUND', (0, 0), (-1, 0), self.colorOhkaGreenLineas),('BACKGROUND', (0, -1), (-1, -1), self.colorOhkaBlue1),('SPAN', (0, -1), (-2, -1))])table.setStyle(tStyle)self.elements.append(table)def extraActivitiesTableMaker(self):self.elements.append(PageBreak())psHeaderText = ParagraphStyle('Hed0', fontSize=12, alignment=TA_LEFT, borderWidth=3,textColor=self.colorOhkaBlue0)text = 'OTRAS ACTIVIDADES Y DOCUMENTACIÓN'paragraphReportHeader = Paragraph(text, psHeaderText)self.elements.append(paragraphReportHeader)spacer = Spacer(10, 22)self.elements.append(spacer)"""Create the line items"""d = []textData = ["No.", "Fecha", "Hora Inicio", "Hora Fin", "Tiempo Total"]fontSize = 8centered = ParagraphStyle(name="centered", alignment=TA_CENTER)for text in textData:ptext = "<font size='%s'><b>%s</b></font>" % (fontSize, text)titlesTable = Paragraph(ptext, centered)d.append(titlesTable)data = [d]lineNum = 1formattedLineData = []alignStyle = [ParagraphStyle(name="01", alignment=TA_CENTER),ParagraphStyle(name="02", alignment=TA_LEFT),ParagraphStyle(name="03", alignment=TA_CENTER),ParagraphStyle(name="04", alignment=TA_CENTER),ParagraphStyle(name="05", alignment=TA_CENTER)]for row in range(10):lineData = [str(lineNum), "Miércoles, 11 de diciembre de 2019","17:30", "19:24", "1:54"]# data.append(lineData)columnNumber = 0for item in lineData:ptext = "<font size='%s'>%s</font>" % (fontSize - 1, item)p = Paragraph(ptext, alignStyle[columnNumber])formattedLineData.append(p)columnNumber = columnNumber + 1data.append(formattedLineData)formattedLineData = []# Row for totaltotalRow = ["Total de Horas", "", "", "", "30:15"]for item in totalRow:ptext = "<font size='%s'>%s</font>" % (fontSize - 1, item)p = Paragraph(ptext, alignStyle[1])formattedLineData.append(p)data.append(formattedLineData)# print(data)table = Table(data, colWidths=[50, 200, 80, 80, 80])tStyle = TableStyle([  # ('GRID',(0, 0), (-1, -1), 0.5, grey),('ALIGN', (0, 0), (0, -1), 'LEFT'),# ('VALIGN', (0, 0), (-1, -1), 'TOP'),("ALIGN", (1, 0), (1, -1), 'RIGHT'),('LINEABOVE', (0, 0), (-1, -1), 1, self.colorOhkaBlue1),('BACKGROUND', (0, 0), (-1, 0), self.colorOhkaGreenLineas),('BACKGROUND', (0, -1), (-1, -1), self.colorOhkaBlue1),('SPAN', (0, -1), (-2, -1))])table.setStyle(tStyle)self.elements.append(table)def summaryTableMaker(self):self.elements.append(PageBreak())psHeaderText = ParagraphStyle('Hed0', fontSize=12, alignment=TA_LEFT, borderWidth=3,textColor=self.colorOhkaBlue0)text = 'REGISTRO TOTAL DE HORAS'paragraphReportHeader = Paragraph(text, psHeaderText)self.elements.append(paragraphReportHeader)spacer = Spacer(10, 22)self.elements.append(spacer)"""Create the line items"""tStyle = TableStyle([('ALIGN', (0, 0), (0, -1), 'LEFT'),# ('VALIGN', (0, 0), (-1, -1), 'TOP'),("ALIGN", (1, 0), (1, -1), 'RIGHT'),('LINEABOVE', (0, 0), (-1, -1), 1, self.colorOhkaBlue1),('BACKGROUND', (-2, -1), (-1, -1), self.colorOhkaGreen2)])fontSize = 8lineData = [["Sesiones remotas", "30:15"],["Sesiones en sitio", "00:00"],["Otras actividades", "00:00"],["Total de horas consumidas", "30:15"]]# for row in lineData:#     for item in row:#         ptext = "<font size='%s'>%s</font>" % (fontSize-1, item)#         p = Paragraph(ptext, centered)#         formattedLineData.append(p)#     data.append(formattedLineData)#     formattedLineData = []table = Table(lineData, colWidths=[400, 100])table.setStyle(tStyle)self.elements.append(table)# Total de horas contradas vs horas consumidasdata = []formattedLineData = []lineData = [["Total de horas contratadas", "120:00"],["Horas restantes por consumir", "00:00"]]# for row in lineData:#     for item in row:#         ptext = "<b>{}</b>".format(item)#         p = Paragraph(ptext, self.styleSheet["BodyText"])#         formattedLineData.append(p)#     data.append(formattedLineData)#     formattedLineData = []table = Table(lineData, colWidths=[400, 100])tStyle = TableStyle([('ALIGN', (0, 0), (0, -1), 'LEFT'),("ALIGN", (1, 0), (1, -1), 'RIGHT'),('BACKGROUND', (0, 0), (1, 0), self.colorOhkaBlue1),('BACKGROUND', (0, 1), (1, 1), self.colorOhkaGreen1),])table.setStyle(tStyle)spacer = Spacer(10, 50)self.elements.append(spacer)self.elements.append(table)if __name__ == '__main__':report = PDFPSReporte('psreport.pdf')

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/90893.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Flask配合Echarts写一个动态可视化大屏

ch 技术 后端&#xff1a;flask 可视化&#xff1a;echarts 前端&#xff1a;HTMLJavaScriptcss 大屏布局 大屏拆分 案例项目中大屏可按版块进行拆解&#xff0c;会发现这里大屏主要由标题、折线图、柱状图、地图、滚动图和词云等组成&#xff0c;整体可切分为8个版块&…

Unity 制作登录功能02-创建和链接数据库(SQlite)

国际惯例&#xff1a;先看效果 1.SQlite是一种嵌入型数据库 在Unity开发游戏时使用SQLite有多种原因&#xff0c;以下是其中一些主要原因&#xff1a; 嵌入式数据库&#xff1a;SQLite是一个嵌入式数据库引擎&#xff0c;这意味着它不需要单独的服务器进程。这使得使用SQLite非…

VUE2项目:尚品汇VUE-CLI脚手架初始化项目以及路由组件分析(一)

标题 环境VUE2目录publicassetscomponentsmain.jsbabel.config.jspackage.jsonvue.config.js 项目路由分析Header与Footer非路由组件完成Header示例 路由组件的搭建声明式导航编程式导航 Footer组件的显示与隐藏路由传递参数重写push和replace三级联动组件拆分附件 环境 前提要…

子序列问题集合

子序列问题 删除一次得到的最大和最大子数组和最长公共子序列&#xff1a;最长上升子序列&#xff08;要输出序列&#xff0c;和最大长度&#xff09;1.dp2.贪心二分 导弹拦截 &#xff08;最长上升/下降子序列长度&#xff09; 删除一次得到的最大和 class Solution { public:…

Elasticsearch基础篇(二):Elasticsearch在windows和liunx上的安装部署

Elasticsearch简介 前言1. Windows环境部署Elasticsearch1.1 下载并解压Elasticsearch压缩包1.2 命令行启动elasticsearch1.3 验证是否成功启动elasticsearch1.4 关闭Elasticsearch1.5 在Windows上安装Elasticsearch作为服务 2. Liunx环境部署Elasticsearch安装 Elasticsearch …

Android Studio 的android.jar文件在哪儿

一般在&#xff1a;C:\Users\admin\AppData\Local\Android\Sdk\platforms\android-33下&#xff08;不一定是33&#xff0c;这个得看你Android Studio->app->builde.gradle的targetSdk是多少&#xff09; 怎么找&#xff1a; 1.打开Android Studio 粘贴地址后&#xff0…

celery分布式异步任务队列-4.4.7

文章目录 celery介绍兼容性简单使用安装使用方式 功能介绍常用案例获取任务的返回值任务中使用logging定义任务基类 任务回调函数No result will be storedResult will be stored任务的追踪、失败重试 python setup.py installln -s /run/shm /dev/shmOptional configuration, …

UE学习记录07----C++中使用事件委托

1.c定义多播委托&#xff0c;示例代码&#xff1a; #include "Delegates/Delegate.h"DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FMyDelegate, UObject*, SelectAgent);/****/ UCLASS(Blueprintable, DisplayName "VM_PlaceEntity") class PR_PLACEE…

在nodejs中如何防止ssrf攻击

在nodejs中如何防止ssrf攻击 什么是ssrf攻击 ssrf&#xff08;server-side request forgery&#xff09;是服务器端请求伪造&#xff0c;指攻击者能够从易受攻击的Web应用程序发送精心设计的请求的对其他网站进行攻击。(利用一个可发起网络请求的服务当作跳板来攻击其他服务)…

PL/SQL异常抓取

目录 1. -- 什么是异常 2. 如何捕获预定义异常? 3.捕获异常的两个函数 SQLCODE :为错误代码返回一个数值 SQLERRM : 返回字符串的数据,包含了与错误相关的信息. 1. -- 什么是异常 DECLARE V_JOB EMP.JOB%TYPE; BEGIN SELECT JOB INTO V_JOB FROM EMP WHERE JOB CLERK; D…

word 多级目录的问题

一、多级标题自动编号 --> 制表符 -> 空格 网址&#xff1a; 【Word技巧】2 标题自动编号——将多级列表链接到样式 - YouTube 二、多级列表 --> 正规形式编号 网址&#xff1a;Word 教学 - 定框架&#xff1a;文档格式与多级标题&#xff01; - YouTube 三、目…

【项目】基于C++11实现的数据库连接池

文章目录 前置知识关键技术点项目背景连接池功能点介绍MySQL Server参数介绍功能设计连接池功能点介绍开发平台选型 关于MySQL数据库编程MySQL接口介绍 测试表设计Connection设计数据库配置文件mysql.conf日志文件log.hppConnectionPool设计压力测试源码链接&#xff1a; 前置知…

南京大学【软件分析】13 Static Analysis for Security

文章目录 1. Information Flow Security2. Confidentiality and Integrity3. Explicit Flows and Covert/Hidden Channels4. Taint Analysis污点分析案例 1. Information Flow Security 引起安全问题最主要的两大原因是&#xff1a;injection errors&#xff08;2013-2019排名…

【深度学习实验】卷积神经网络(六):卷积神经网络模型(VGG)训练、评价

目录 一、实验介绍 二、实验环境 1. 配置虚拟环境 2. 库版本介绍 三、实验内容 0. 导入必要的工具包 1. 构建数据集&#xff08;CIFAR10Dataset&#xff09; a. read_csv_labels&#xff08;&#xff09; b. CIFAR10Dataset 2. 构建模型&#xff08;FeedForward&…

【网络协议】TCP

TCP协议全称为传输控制协议(Transmission Control Protocol).要理解TCP就要从他的特性开始说&#xff0c;这些特性各自之间或多或少各有联结&#xff0c;需要以宏观视角来看待。 目录&#xff1a; 1.TCP报文格式 因为报文解释过于繁琐&#xff0c;具体内容请看这篇文章TCP报文…

问题 - 谷歌浏览器 network 看不到接口请求解决方案

谷歌浏览器 -> 设置 -> 重置设置 -> 将设置还原为其默认值 查看接口情况&#xff0c;选择 All 或 Fetch/XHR&#xff0c;勾选 Has blocked cookies 即可 如果万一还不行&#xff0c;卸载浏览器重装。 参考&#xff1a;https://www.cnblogs.com/tully/p/16479528.html

微信小程序开发基础(二)基本组件

本帖开始介绍小程序中的一些基本组件~ 微信小程序是一种轻量、快速、跨平台的应用程序&#xff0c;是微信公众号的重要组成部分。随着微信小程序的普及&#xff0c;越来越多的开发者和企业开始使用微信小程序来搭建自己的应用&#xff0c;但是对于初次接触微信小程序的开发者…

CSS 基础 3

目录 &#x1f680; 导读 -- target 盒子模型 看透网页布局的本质 盒子模型组成 边框(border) border-style ​编辑border-color border-width 边框写法 简写 分开写 表格细线边框 边框会影响盒子实际大小 内边距 内容 内边距-padding padding属性简写 pad…

《PPT 自我介绍》:一本让你的职场表现更加出色的秘籍?

这里提供一个2000字左右的PPT自我介绍模板制作指南&#xff1a; 自我介绍是面试或工作中常见的情况&#xff0c;利用PPT可以给人留下更深刻的印象。但如何快速且专业地制作一个自我介绍PPT呢?这里给大家介绍几点技巧&#xff1a; 1. 选择一个简洁大方的PPT模板 首先要选择一…

spark相关网站

Spark的五种JOIN策略解析 https://www.cnblogs.com/jmx-bigdata/p/14021183.html 万字详解整个数据仓库建设体系&#xff08;好文值得收藏&#xff09; https://mp.weixin.qq.com/s?__bizMzg2MzU2MDYzOA&mid2247484692&idx1&snf624672e62ba6cd4cc69bdb6db28756a&…