python 使用reportlab打造29页图文并茂pdf(全网reportlab最强pdf自动化生成代码)

python 使用reportlab打造29页图文并茂pdf(全网reportlab最强pdf自动化生成代码)

这次项目所使用的代码如果同志们可以灵活使用,基本上可以解决百分之九十以上的pdf模板自动化生成。

最近博主,做了一个项目,使用reportlab制作pdf,博主打算把代码分享出来,先看一下博主生成的pdf:
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

以上就是,这次项目生成的pdf,使用的数据,我就不分享了,下面是代码。

注:代码需要有一点编程灵性才能看懂,另外,数据集博主就不分享了,设计一些商业机密,感兴趣的同学可以好好学习一下。


#encoding=gbk
import cv2
from reportlab.pdfgen import canvas
from PIL import Image
#encoding=gbk
from reportlab.pdfbase import pdfmetrics   # 注册字体
from reportlab.pdfbase.ttfonts import TTFont # 字体类
from reportlab.platypus import Table, SimpleDocTemplate, Paragraph, Image  # 报告内容相关类
from reportlab.lib.pagesizes import letter  # 页面的标志尺寸(8.5*inch, 11*inch)
from reportlab.lib.styles import getSampleStyleSheet  # 文本样式
from reportlab.lib import colors  # 颜色模块
from reportlab.graphics.charts.barcharts import VerticalBarChart  # 图表类
from reportlab.graphics.charts.legends import Legend  # 图例类
from reportlab.graphics.shapes import Drawing  # 绘图工具
from reportlab.lib.units import cm  # 单位:cm
from reportlab.platypus import BaseDocTemplate, Paragraph, Table, Spacer, PageBreak, Image, PageTemplate, \
    Frame, NextPageTemplate, FrameBreak
from reportlab.lib.units import inch
import json
with open("./res_summary.json", "r", encoding="utf-8") as f:
    contentz = json.load(f)
    
# for key in contentz.keys():
#     print(key,contentz[key])


# 注册字体(提前准备好字体文件, 如果同一个文件需要多种字体可以注册多个)
pdfmetrics.registerFont(TTFont('SimSun', 'simsun.ttc'))
pdfmetrics.registerFont(TTFont('SimSunb', 'ssb.ttf'))
#C:\Users\Administrator\source\repos\latex\latex\simsun.ttc
class Graphs:
    # 绘制标题
    @staticmethod
    def draw_title(title: str):
        # 获取所有样式表
        style = getSampleStyleSheet()
        # 拿到标题样式
        ct = style['Heading1']
       
        # 单独设置样式相关属性
        ct.fontName = 'SimSunb'      # 字体名
        ct.fontSize = 23            # 字体大小
        ct.leading = 40             # 行间距
        ct.textColor = colors.black     # 字体颜色
        ct.alignment = 1    # 居中
        ct.bold = 10
        ct.leftMargin = 120#改左边距
        ct.rightMargin = 120
        # 创建标题对应的段落,并且返回
        return Paragraph(title, ct)
      
  # 绘制小标题
    @staticmethod
    def draw_little_title(title: str):
        # 获取所有样式表
        style = getSampleStyleSheet()
        # 拿到标题样式
        ct = style['Normal']
        # 单独设置样式相关属性
        ct.fontName = 'SimSun'  # 字体名
        ct.fontSize = 15  # 字体大小
        ct.leading = 30  # 行间距
        ct.textColor = colors.red  # 字体颜色
        # 创建标题对应的段落,并且返回
        return Paragraph(title, ct)
 
    # 绘制普通段落内容
    @staticmethod
    def draw_text(text: str):
        # 获取所有样式表
        style = getSampleStyleSheet()
        # 获取普通样式
        ct = style['Normal']
        ct.fontName = 'SimSun'
        ct.fontSize = 12
        ct.wordWrap = 'CJK'     # 设置自动换行
        ct.alignment = 0        # 左对齐
        ct.firstLineIndent = 32     # 第一行开头空格
        ct.leading = 30
        return Paragraph(str(text), ct)



    def draw_text_2(text: str):
        # 获取所有样式表
        style = getSampleStyleSheet()
        # 获取普通样式
        ct = style['Normal']
        ct.fontName = 'SimSunb'
        ct.fontSize = 12
        ct.wordWrap = 'CJK'     # 设置自动换行
        ct.alignment = 0        # 左对齐
        ct.firstLineIndent = 32     # 第一行开头空格
        ct.leading = 25
        return Paragraph(str(text), ct)
    def draw_text_23(text: str):
        # 获取所有样式表
        style = getSampleStyleSheet()
        # 获取普通样式
        ct = style['Normal']
        ct.fontName = 'SimSunb'
        ct.fontSize = 12
        ct.wordWrap = 'CJK'     # 设置自动换行
        ct.alignment = 1        # 左对齐
        ct.firstLineIndent = 32     # 第一行开头空格
        ct.leading = 25
        return Paragraph(str(text), ct)
    def draw_text_5(text: str):
        # 获取所有样式表
        style = getSampleStyleSheet()
        # 获取普通样式
        ct = style['Normal']
        ct.fontName = 'SimSunb'
        ct.fontSize = 12
        ct.wordWrap = 'CJK'     # 设置自动换行
        ct.alignment = 0        # 左对齐
        ct.firstLineIndent = 0     # 第一行开头空格
        ct.leading = 30
        return Paragraph(str(text), ct)
    

    def draw_text_4(text: str):
        # 获取所有样式表
        style = getSampleStyleSheet()
        # 获取普通样式
        ct = style['Normal']
        ct.fontName = 'SimSun'
        ct.fontSize = 12
        ct.wordWrap = 'CJK'     # 设置自动换行
        ct.alignment = 0        # 左对齐
        ct.firstLineIndent = 0     # 第一行开头空格
        ct.leading = 30
        return Paragraph(str(text), ct)
    

    # 绘制表格
    def draw_text_3(text: str):
        # 获取所有样式表
        style = getSampleStyleSheet()
        # 获取普通样式
        ct = style['Normal']
        ct.fontName = 'SimSun'
        ct.fontSize = 12
        ct.wordWrap = 'CJK'     # 设置自动换行
        ct.alignment = 0        # 左对齐
        ct.firstLineIndent = 32     # 第一行开头空格
        ct.leading = 30
        return Paragraph(str(text), ct)
    # 绘制表格


    @staticmethod
    def draw_table(*args):
        # 列宽度
        col_width = 120
        style = [
            ('FONTNAME', (0, 0), (-1, -1), 'SimSunb'),  # 字体
            ('FONTSIZE', (0, 0), (-1, 0), 12),  # 第一行的字体大小
            ('FONTSIZE', (0, 1), (-1, -1), 10),  # 第二行到最后一行的字体大小
            #('BACKGROUND', (0, 0), (-1, 0), '#d5dae6'),  # 设置第一行背景颜色
            ('ALIGN', (0, 0), (-1, -1), 'CENTER'),  # 第一行水平居中
            ('ALIGN', (0, 1), (-1, -1), 'CENTER'),  # 第二行到最后一行左右左对齐
            ('VALIGN', (0, 0), (-1, -1), 'MIDDLE'),  # 所有表格上下居中对齐
            ('TEXTCOLOR', (0, 0), (-1, -1), colors.black),  # 设置表格内文字颜色
            ('GRID', (0, 0), (-1, -1), 0.01, colors.black),  # 设置表格框线为grey色,线宽为0.5
            # ('SPAN', (0, 1), (0, 2)),  # 合并第一列二三行
            # ('SPAN', (0, 3), (0, 4)),  # 合并第一列三四行
            # ('SPAN', (0, 5), (0, 6)),  # 合并第一列五六行
            # ('SPAN', (0, 7), (0, 8)),  # 合并第一列五六行
        ]
        table = Table(args, rowHeights=48,colWidths=70 ,style=style)
        return table
    
    @staticmethod
    def draw_table_z(*args):
        # 列宽度
        col_width = 120
        style = [
               ('FONTNAME', (0, 0), (-1, -1), 'SimSunb'),  # 字体
            ('FONTSIZE', (0, 0), (-1, 0), 15),  # 第一行的字体大小
            ('FONTSIZE', (0, 1), (-1, -1), 15),  # 第二行到最后一行的字体大小
            #'BACKGROUND', (0, 0), (-1, 0), 'blue'),  # 设置第一行背景颜色
            
            ('ALIGN', (0, 0), (0, -1), 'CENTER'),  # 第水平居中
            ('ALIGN', (1, 0), (-1, -1), 'LEFT'),  # 第二行到最后一行左右左对齐
        #    ('BACKGROUND', (0, 0), (-1, 0), 'blue'),  # 设置第一行背景颜色

            ('VALIGN', (0, 0), (-1, -1), 'MIDDLE'),  # 所有表格上下居中对齐
            ('TEXTCOLOR', (0, 0), (-1, -1), colors.darkslategray),  # 设置表格内文字颜色
            ('GRID', (0, 0), (-1, -1), 0.5, colors.grey),  # 设置表格框线为grey色,线宽为0.5
            
            # ('SPAN', (0, 1), (0, 2)),  # 合并第一列二三行
            # ('SPAN', (0, 3), (0, 4)),  # 合并第一列三四行
            # ('SPAN', (0, 5), (0, 6)),  # 合并第一列五六行
            # ('SPAN', (0, 7), (0, 8)),  # 合并第一列五六行
             ('SPAN', (1, 0), (3, 0)),  # 合并第一列二三行
            ('SPAN', (1, 1), (3, 1)),  # 合并第一列三四行
            ('SPAN', (1, 2), (3, 2)),  # 合并第一列五六行
        ]
        table = Table(args, rowHeights=30,colWidths=110 ,style=style)
        return table
    @staticmethod
    def draw_table_2(*args):
        # 列宽度
        col_width = 120
        style = [
            ('FONTNAME', (0, 0), (-1, -1), 'SimSunb'),  # 字体
            ('FONTSIZE', (0, 0), (-1, 0), 12),  # 第一行的字体大小
            ('FONTSIZE', (0, 1), (-1, -1), 10),  # 第二行到最后一行的字体大小
            #('BACKGROUND', (0, 0), (-1, 0), '#d5dae6'),  # 设置第一行背景颜色
            ('ALIGN', (0, 0), (-1, -1), 'CENTER'),  # 第一行水平居中
            ('ALIGN', (0, 1), (-1, -1), 'CENTER'),  # 第二行到最后一行左右左对齐
            ('VALIGN', (0, 0), (-1, -1), 'MIDDLE'),  # 所有表格上下居中对齐
            ('TEXTCOLOR', (0, 0), (-1, -1), colors.black),  # 设置表格内文字颜色
            ('GRID', (0, 0), (-1, -1), 0.01, colors.black),  # 设置表格框线为grey色,线宽为0.5
            # ('SPAN', (0, 1), (0, 2)),  # 合并第一列二三行
            # ('SPAN', (0, 3), (0, 4)),  # 合并第一列三四行
            # ('SPAN', (0, 5), (0, 6)),  # 合并第一列五六行
            # ('SPAN', (0, 7), (0, 8)),  # 合并第一列五六行
        ]
        table = Table(args, rowHeights=48,colWidths=60 ,style=style)
        return table
    @staticmethod
    def draw_table_3(*args):
        # 列宽度
        col_width = 120
        style = [
            ('FONTNAME', (0, 0), (-1, -1), 'SimSunb'),  # 字体
            ('FONTSIZE', (0, 0), (-1, 0), 12),  # 第一行的字体大小
            ('FONTSIZE', (0, 1), (-1, -1), 10),  # 第二行到最后一行的字体大小
            #('BACKGROUND', (0, 0), (-1, 0), '#d5dae6'),  # 设置第一行背景颜色
            ('ALIGN', (0, 0), (-1, -1), 'CENTER'),  # 第一行水平居中
            ('ALIGN', (0, 1), (-1, -1), 'CENTER'),  # 第二行到最后一行左右左对齐
            ('VALIGN', (0, 0), (-1, -1), 'MIDDLE'),  # 所有表格上下居中对齐
            ('TEXTCOLOR', (0, 0), (-1, -1), colors.darkslategray),  # 设置表格内文字颜色
            ('GRID', (0, 0), (-1, -1), 0.1, colors.black),  # 设置表格框线为grey色,线宽为0.5
            # ('SPAN', (0, 1), (0, 2)),  # 合并第一列二三行
            # ('SPAN', (0, 3), (0, 4)),  # 合并第一列三四行
            # ('SPAN', (0, 5), (0, 6)),  # 合并第一列五六行
            # ('SPAN', (0, 7), (0, 8)),  # 合并第一列五六行
        ]
        table = Table(args, rowHeights=48,colWidths=60 ,style=style)
        return table
    @staticmethod
    def draw_table_first(*args):
        # 列宽度
        col_width = 100
        style = [
            ('FONTNAME', (0, 0), (-1, -1), 'SimSunb'),  # 字体
            ('FONTSIZE', (0, 0), (-1, 0), 15),  # 第一行的字体大小
            ('FONTSIZE', (0, 1), (-1, -1), 15),  # 第二行到最后一行的字体大小
            #'BACKGROUND', (0, 0), (-1, 0), 'blue'),  # 设置第一行背景颜色
            
            ('ALIGN', (0, 0), (0, -1), 'CENTER'),  # 第水平居中
            ('ALIGN', (1, 0), (-1, -1), 'LEFT'),  # 第二行到最后一行左右左对齐
            ('BACKGROUND', (0, 0), (-1, 0), 'blue'),  # 设置第一行背景颜色

            ('VALIGN', (0, 0), (-1, -1), 'MIDDLE'),  # 所有表格上下居中对齐
            ('TEXTCOLOR', (0, 0), (-1, -1), colors.darkslategray),  # 设置表格内文字颜色
            ('GRID', (0, 0), (-1, -1), 0.5, colors.grey),  # 设置表格框线为grey色,线宽为0.5
            
            ('SPAN', (1, 0), (3, 0)),  # 合并第一列二三行
            ('SPAN', (1, 1), (3, 1)),  # 合并第一列三四行
            ('SPAN', (1, 2), (3, 2)),  # 合并第一列五六行
            ('SPAN', (1, 3), (3, 3)),  # 合并第一列五六行
            ('SPAN', (1, 4), (3, 4)),  # 合并第一列五六行
            ('SPAN', (1, 5), (3, 5)),  # 合并第一列五六行
            ('SPAN', (1, 6), (3, 6)),  # 合并第一列五六行
        ]
        table = Table(args, rowHeights=43,colWidths=110, style=style)
        return table
    # 创建图表
    
 
    # 绘制图片
    @staticmethod
    def draw_img_first(path):
        image = cv2.imread(path)  # 逐个读取
        img = Image(path)       # 读取指定路径下的图片
        img.drawWidth = 10*cm        # 设置图片的宽度
        img.drawHeight = 10*cm       # 设置图片的高度
        return img

    @staticmethod
    def draw_img_first(path):
        image = cv2.imread(path)  # 逐个读取
        
        
        if(image.shape[0]*image.shape[1]>30000000):
             print("dd",image.shape)
             image=cv2.resize(image,(int(image.shape[0]*0.6),int(image.shape[1]*0.6)))
             cv2.imwrite("E:\\work\\10-23\\input\\results\\secs\\z.png",image)
             img = Image("E:\\work\\10-23\\input\\results\\secs\\z.png")       # 读取指定路径下的图片
            # img.drawWidth = 5*cm        # 设置图片的宽度
            # img.drawHeight = 8*cm       # 设置图片的高度
             return img

        img = Image(path)       # 读取指定路径下的图片
        img.drawWidth = 3*cm        # 设置图片的宽度
        img.drawHeight = 3*cm       # 设置图片的高度
        return img
    
import csv
def read_csv(path):
    listz=[]
    p=0
    with open(path, 'r', encoding='utf-8') as csv_f:
        reader = csv.reader(csv_f)
        for row in reader:
           
         #   print(row)
            if p!=0:
              print(row[0])
              st=''
              for s in row[0][0:]:
                  if '0'<=s and  s<='9':
                      st=st+s
                  if s in [',',' ']:
                      break
              row[0]=int(st)
            p=p+1
            listz.append(row)
        return listz
import datetime
from reportlab.lib.units import inch, cm
from reportlab.pdfbase import pdfmetrics, ttfonts
from reportlab.lib.styles import getSampleStyleSheet
from reportlab.platypus import SimpleDocTemplate, Paragraph, PageBreak, Spacer
def myFirstPage(canvas, doc):
    """
    第一页页眉页脚配置
    :param canvas: 绘画对象,用来写入页眉页脚
    :param doc: 文档对象,可以以此得知文档的页边距信息
    :return:
    """
    # 文档宽度高度(width、height),左右页边距(leftMargin、rightMargin)、上下页边距(topMargin、bottomMargin)
    totalPageHeight = doc.bottomMargin + doc.height + doc.topMargin  # 页面总高度
    totalPageWidth = doc.leftMargin + doc.width + doc.rightMargin  # 页面总宽度

    # 保存之前的画笔格式等状态,并设置新的状态
    canvas.saveState()   
    # 设置字体及大小
    canvas.setFont('SimSun', 12)
    # 添置靠左页眉
    print(doc.leftMargin, totalPageHeight - doc.topMargin)
    canvas.drawImage(
        r"MD_logo.png", 0, 785, 5.2* cm, 2 * cm
    )

    
    canvas.restoreState()

def myLaterPages(canvas, doc):
    """
    除第一页外其它页的页眉页脚配置
    :param self:
    :param canvas:
    :param doc:
    :return:
    """
    totalPageWidth = doc.leftMargin + doc.width + doc.rightMargin

    canvas.saveState()
    canvas.setFont('SimSun', 9)
    # 添置居中页脚
    canvas.drawString(
        totalPageWidth / 2.0, doc.bottomMargin, "{}".format(doc.page)
    )

    canvas.restoreState()
    #  #   print("fdsfdsa",res_summary['project_bird_view_path'])
    

#     content.append(Graphs.draw_text(res_summary['project_name']))#003
   
#     content.append(Graphs.draw_text(res_summary['project_unit']))#004
 
#     content.append(Graphs.draw_text(res_summary['manage_unit']))#005
    
#     content.append(Graphs.draw_text(res_summary['construction_unit']))#006
#     content.append(Graphs.draw_text(res_summary['inspection_unit']))##007
#     content.append(Graphs.draw_text(res_summary['inspector']))#008
#     content.append(Graphs.draw_text(res_summary['inspection_time']))#009

##
#     content.append(Graphs.draw_text(res_summary['wall_loc']))#010
#     content.append(Graphs.draw_text(res_summary['wall_stage']))#011

  
#     content.append(Graphs.draw_text(res_summary['scoring_dist_thresh_flatness']))#012
#     content.append(Graphs.draw_text(res_summary['scoring_dist_thresh_perpendicularity']))#012
       # content.append(Graphs.draw_img(res_summary['wall_camera_view_path']))#013
    
    # content.append(Graphs.draw_img(res_summary['pcd_camera_view_path']))#014
    
    
#     content.append(Graphs.draw_img(res_summary['sec_heat_info']['heat_map_path']))#015

#     #print(res_summary['flatness_secs_info']['statistics_measure'])
#     
#    # print(list_data)

    #for key in res_summary['flatness_secs_info']['defect_map_infos']:
    #          content.append(Graphs.draw_text(key['floors_num']))#023
        
    #          content.append(Graphs.draw_img(key['img_path']))#023
#     
#     #print(res_summary['sec_heat_info']['statistics_pts']['secs_res_path'])
#     list_data=read_csv(res_summary['sec_heat_info']['statistics_pts']['secs_res_path'])
    
#     content.append(Graphs.draw_table(*list_data))#017
    
#     content.append(Graphs.draw_text(res_summary['sec_heat_info']['statistics_pts']['valid_avg']))#018
#     content.append(Graphs.draw_text(res_summary['sec_heat_info']['statistics_pts']['score_avg']))#019
#     #content.append(Graphs.draw_text(res_summary['scoring_dist_thresh_perpendicularity']))#012

#     lsiz= res_summary['perpendicularity_secs_info']['worst_se_map_infos']
#     for key in res_summary['flatness_secs_info']['worst_se_map_infos']:
#        # print(key['floors_num'])
#         content.append(Graphs.draw_text(key['floors_num']))#020
        
#         content.append(Graphs.draw_img(key['img_path']))#021

#         for k in lsiz:
#         #    print(k)
#             if(k['floors_num']==key['floors_num']) :
#                 content.append(Graphs.draw_img(k['img_path']))#022
#                # print(k['img_path']) 

#     for key in res_summary['flatness_secs_info']['defect_map_infos']:
#              content.append(Graphs.draw_text(key['floors_num']))#023
        
#              content.append(Graphs.draw_img(key['img_path']))#023
#     content.append(Graphs.draw_img(res_summary['sec_heat_info']['heat_map_path']))#024
from reportlab.lib.pagesizes import A4
from reportlab.platypus import SimpleDocTemplate, Paragraph, Table, TableStyle, Image
if __name__ == '__main__':
    # 创建内容对应的空列表
    content = list()
    

    res_summary=contentz
    
   

 

    


    content.append(Graphs.draw_title('元宇智数(深圳)科技有限公司'))
    content.append(Graphs.draw_title('外墙检测诊断报告书'))
    b=[['项目名称',res_summary['project_name'],'',''],['建设单位',res_summary['project_unit'],'',''],['监理单位',res_summary['manage_unit'],'',''],
       ['施工单位',res_summary['construction_unit'],'',''],['检测单位',res_summary['inspection_unit'],'',''],
                                                                    ['测量员',res_summary['inspector'],'',''],['测量时间',res_summary['inspection_time'],'','']]
    
    # 添加图片

 
    






#   #  print("fdsfdsa",res_summary['project_bird_view_path'])
    p1 = Image(res_summary['project_bird_view_path'],250,250)
    content.append(p1)
    content.append(Graphs.draw_text_3('<i>   </i><br/>'))
    content.append(Graphs.draw_table_first(*b))
    
    content.append(Graphs.draw_title(res_summary['wall_loc']+"外墙检测现场情况"))
  #  content.append(Graphs.draw_text_3('<i>   </i><br/>'))
    a="检测阶段:"+res_summary['wall_stage']
    b="检测标准:"+str(res_summary['scoring_dist_thresh_flatness'])
    c="检测设备:"+str(res_summary['scoring_dist_thresh_flatness'])
    s=a+'<br/>'+b+"<br/>"+c
    lb=[['检测阶段',res_summary['wall_stage'],'',''],['检测标准',str(res_summary['scoring_dist_thresh_flatness']),'',''],['检测设备',str(res_summary['scoring_dist_thresh_flatness']),'','']]
    #draw_table_z
    content.append(Graphs.draw_table_z(*lb))
  #  content.append(Graphs.draw_text_2(b))
   # content.append(Graphs.draw_text_2(c))
    
       
  
  
   # canvas.drawImage(res_summary['wall_camera_view_path'], inch*.25, inch*.25, 100-(.5*inch), (.316*inch))
    #canvas.drawImage(res_summary['wall_camera_view_path'], inch*.25, inch*.25, 100-(.5*inch), (.316*inch))
    p13 = Image(res_summary['wall_camera_view_path'],200,455)
    p14=Image(res_summary['pcd_camera_view_path'],200,455)
    data= [[p13,p14 ]]
    t=Table(data,style=[
     ('GRID',(0,0),(-1,-1),2,colors.white),
     ('VALIGN', (0, 0), (-1, -1), 'MIDDLE'),  # 所有表格上下居中对齐
     ], rowHeights=460,colWidths=220)
    
    content.append(Graphs.draw_text('<br/><br/>'))
   
    content.append(t)
    content.append(Graphs.draw_title("检测设备参数"))
    
    
    s="FARO P350 双轴补偿器:对每次扫描进行水平校准,精度达到 19 角秒,\
    误差范围±2° 高度传感器:通过电子气压计,可测得与固定点相对的高度并将其<br/>添加至扫描指南针 :电子指南针可指示扫描的方向 GNSS:集成 GPS 和<br/>GLONASS 现场补偿:创建当前质量报告并为自动改进设备补偿提供了选项。<br/>"
    
    s3="外部环境<br/>"
    s2="重量(包括电池): 4.2kg 尺寸: 230 x 183 x 103mm<br/>电源电压: 19V (外置电源)14.4V (内部电池)<br/>功耗: 15W(待机时),25W(扫描时),80W(充电时)<br/>\
电池使用时间: 4.5 小时<br/>\
工作温度: 5° - 40°C<br/>\
扩展工作温度: -20° - 55°C<br/>\
贮存温度: -10° - 60°C<br/>\
防护等级: IP54<br/>\
湿度: 无凝结。<br/><br/><br/>"
   
    
    p4 = Image('p2.png',100,150)
    content.append(p4)
    content.append(Graphs.draw_text_3(s))
    content.append(Graphs.draw_text_5(s3))
    content.append(Graphs.draw_text_4(s2))
    content.append(Graphs.draw_text_3('<i>   </i><br/>'))
  #  content.append(Graphs.draw_text(''))
    content.append(Graphs.draw_title("外墙面热力图"))
   # content.append(Graphs.draw_text_3("<i>  </i><br/>"))
    
    p13 = Image(res_summary['wall_camera_view_path'],200,590)
    patz="D:\work\latex\data\\z.png"
  
    def p_z(path):
        image = cv2.imread(path)  # 逐个读取
        
        
        if(image.shape[0]*image.shape[1]>1000000):
                 print("dd",image.shape)
                 image=cv2.resize(image,(int(image.shape[0]*0.5),int(image.shape[1]*0.5)))
                 cv2.imwrite(patz,image)
                # img = Image("E:\\work\\10-23\\input\\results\\secs\\z.png") 
        else:
            cv2.imwrite(patz,image)
    p_z(res_summary['sec_heat_info']['heat_map_path'])
    p15=Image(patz,7*cm,21*cm)
    data= [[p13,p15 ]]
    t=Table(data,style=[
     ('GRID',(0,0),(-1,-1),2,colors.white)], rowHeights=600,colWidths=240)
    content.append(t)
   
    content.append(Graphs.draw_title("墙面各层区间下尺检测结果"))
    list_data=read_csv(res_summary['flatness_secs_info']['statistics_measure'])
    content.append(Graphs.draw_table(*list_data))#016
    
    content.append(Graphs.draw_text_3('<i>   </i><br/>'))
    content.append(Graphs.draw_title("墙面满测检测结果"))
    
    list_data=read_csv(res_summary['sec_heat_info']['statistics_pts']['secs_res_path'])
    
    content.append(Graphs.draw_table_2(*list_data))#017
    content.append(Graphs.draw_text_3('<i>   </i><br/>'))
    
   
    lsiz= res_summary['perpendicularity_secs_info']['worst_se_map_infos']
     
   # data= [[p13,p14 ]]
   
  
    sty=[ ('SPAN', (0, 0), (3, 0)),
         ('SPAN', (4, 0), (7, 0)) ,  
         ('SPAN', (0, 1), (3, 11)) , 
          ('SPAN', (4, 1), (7, 11)) , 
         ('FONTNAME', (0, 0), (-1, -1), 'SimSun'),  # 字体
            ('FONTSIZE', (0, 0), (-1, 0), 15),  # 第一行的字体大小
            ('FONTSIZE', (0, 1), (-1, -1), 15),  # 第二行到最后一行的字体大小
            #('BACKGROUND', (0, 0), (-1, 0), '#d5dae6'),  # 设置第一行背景颜色
            ('ALIGN', (0, 0), (-1, -1), 'CENTER'),  # 第一行水平居中
            ('ALIGN', (0, 1), (-1, -1), 'CENTER'),  # 第二行到最后一行左右左对齐
            ('VALIGN', (0, 0), (-1, -1), 'MIDDLE'),  # 所有表格上下居中对齐
            ('TEXTCOLOR', (0, 0), (-1, -1), colors.darkslategray),  # 设置表格内文字颜色
            ('GRID', (0, 0), (-1, -1), 0.1, colors.black),  # 设置表格框线为grey色,线宽为0.5
         ] # 合并第一列二三行,]#('GRID',(0,0),(-1,-1),2,colors.white)
    




    ####**********


    z=list_data
    for key in res_summary['flatness_secs_info']['worst_se_map_infos']:
       # print(key['floors_num'])
      #  content.append(Graphs.draw_text(key['floors_num']))#020
        if key['floors_num'][0]!=33:
            content.append(Graphs.draw_title(str(key['floors_num'][0])+"-"+str(key['floors_num'][1])+"层区间-垂平数据结果"))
        else:
             content.append(Graphs.draw_title(str(key['floors_num'][0])+"层以上-垂平数据结果"))
        
        p16=Image(key['img_path'],8*cm,16*cm)
        list_data=z
        list_data[0][0]='外墙平整度'
        list_data[0][4]='外墙垂直度'
        list_data[1][0]=p16
      #  content.append(p16)#021
        for k in lsiz:
        #    print(k)
            if(k['floors_num']==key['floors_num']) :
              #  content.append(Graphs.draw_img(k['img_path']))#022
                p16=Image(k['img_path'],8*cm,16*cm)
              #  content.append(p16)#021
                list_data[1][4]=p16
                t=Table(list_data,style=sty, rowHeights=50,colWidths=65)
                content.append(t)
               # print(k['img_path']) 
        content.append(Graphs.draw_text_3('<i>   </i><br/>'))
    




        
    sty2=[ ('SPAN', (0, 0), (7, 0)),
        
         ('SPAN', (0, 1), (7, 11)) , 
        
         ('FONTNAME', (0, 0), (-1, -1), 'SimSun'),  # 字体
            ('FONTSIZE', (0, 0), (-1, 0), 15),  # 第一行的字体大小
            ('FONTSIZE', (0, 1), (-1, -1), 15),  # 第二行到最后一行的字体大小
            #('BACKGROUND', (0, 0), (-1, 0), '#d5dae6'),  # 设置第一行背景颜色
            ('ALIGN', (0, 0), (-1, -1), 'CENTER'),  # 第一行水平居中
            ('ALIGN', (0, 1), (-1, -1), 'CENTER'),  # 第二行到最后一行左右左对齐
            ('VALIGN', (0, 0), (-1, -1), 'MIDDLE'),  # 所有表格上下居中对齐
            ('TEXTCOLOR', (0, 0), (-1, -1), colors.darkslategray),  # 设置表格内文字颜色
            ('GRID', (0, 0), (-1, -1), 0.1, colors.black),  # 设置表格框线为grey色,线宽为0.5
         ] # 合并第一列二三行,]#('GRID',(0,0),(-1,-1),2,colors.white)
    

    

    list_z=res_summary['flatness_secs_info']['defect_map_infos']
    
    for i in range(0,len(list_z),2):
        content.append(Graphs.draw_title("缺陷修补建议图"))
        list_data=z
        list_data[0][0]=str(list_z[i]['floors_num'][0])+"-"+str(list_z[i]['floors_num'][1])+"层区间"
        p16=Image(list_z[i]['img_path'],8*cm,16*cm)
        list_data[1][0]=p16

        try:
            list_data[0][4]=str(list_z[i+1]['floors_num'][0])+"-"+str(list_z[i+1]['floors_num'][1])+"层区间"
        
        
            p16=Image(list_z[i+1]['img_path'],8*cm,16*cm)
            list_data[1][4]=p16
            t=Table(list_data,style=sty, rowHeights=50,colWidths=65)
            content.append(t)
            content.append(Graphs.draw_text_3('<i>   </i><br/>'))
            i=i+1
        except:
            #list_data[0][4]=''
            #list_data[1][4]=''
            list_data[0][0]=str(list_z[i]['floors_num'][0])+"层以上"
            p16=Image(list_z[i]['img_path'],12*cm,16*cm)
            list_data[1][0]=p16
            t=Table(list_data,style=sty2, rowHeights=50,colWidths=65)
            content.append(t)
            content.append(Graphs.draw_text_3('<i>   </i><br/>'))
            i=i+1
       





    content.append(Graphs.draw_title("层间K板接缝处检测数据结果"))
    content.append(Graphs.draw_text_23("(上下各延展1.2米)客户定制检测内容"))
   # p16=Image(res_summary['sec_heat_info']['heat_map_path'],300,600)
    print(res_summary['sec_heat_info']['heat_map_path'])
    p_z(res_summary['sec_heat_info']['heat_map_path'])
    p15=Image(patz,300,600)
    content.append(p15)#024


    
    

    styz=[ ('SPAN', (0, 0), (3, 0)),
         ('SPAN', (4, 0), (7, 0)) ,  
         ('SPAN', (0, 1), (3, 5)) , 
          ('SPAN', (4, 1), (7, 5)) , 

          ('SPAN', (0, 6), (3, 6)),
         ('SPAN', (4, 6), (7, 6)) ,  
         ('SPAN', (0, 7), (3, 11)) , 
          ('SPAN', (4, 7), (7, 11)) , 

         ('FONTNAME', (0, 0), (-1, -1), 'SimSun'),  # 字体
            ('FONTSIZE', (0, 0), (-1, 0), 12),  # 第一行的字体大小
            ('FONTSIZE', (0, 1), (-1, -1), 12),  # 第二行到最后一行的字体大小
            #('BACKGROUND', (0, 0), (-1, 0), '#d5dae6'),  # 设置第一行背景颜色
            ('ALIGN', (0, 0), (-1, -1), 'CENTER'),  # 第一行水平居中
            ('ALIGN', (0, 1), (-1, -1), 'CENTER'),  # 第二行到最后一行左右左对齐
            ('VALIGN', (0, 0), (-1, -1), 'MIDDLE'),  # 所有表格上下居中对齐
            ('TEXTCOLOR', (0, 0), (-1, -1), colors.darkslategray),  # 设置表格内文字颜色
            ('GRID', (0, 0), (-1, -1), 0.1, colors.black),  # 设置表格框线为grey色,线宽为0.5
         ] # 合并第一列二三行,]#('GRID',(0,0),(-1,-1),2,colors.white)



       # res_summary['flatness_gaps_info']['worst_se_map_infos'][*]['floors_num']
 # 和
 # res_summary['flatness_gaps_info']['defect_map_infos'][*]['floors_num']

    lsiz= res_summary['flatness_gaps_info']['defect_map_infos']
    piz=0
    for key in res_summary['flatness_gaps_info']['worst_se_map_infos']:
        list_data=z
        
        if  piz%2==0:
             piz=piz+1
             content.append(Graphs.draw_title("层间接缝处爆尺及缺陷修补建议图"))
          #   print("fdsfds")
             list_data[0][0]=str(key['floors_num'][0])+'层接缝处爆尺数据'
             list_data[0][4]=str(key['floors_num'][0])+'层接缝处缺陷修补'
             p16=Image(key['img_path'],212,160)
             list_data[1][0]=p16
           #  content.append(Graphs.draw_img(key['img_path']))#026

             for k in lsiz:
             #    print(k)
                 if(k['floors_num']==key['floors_num']) :
                     p16=Image(k['img_path'],212,160)
                     list_data[1][4]=p16
                    # content.append(Graphs.draw_img(k['img_path']))#027
        else:
             piz=piz+1
             list_data[6][0]=str(key['floors_num'][0])+'层接缝处爆尺数据'
             list_data[6][4]=str(key['floors_num'][0])+'层接缝处缺陷修补'
             p16=Image(key['img_path'],212,160)
             list_data[7][0]=p16

             for k in lsiz:
             #    print(k)
                 if(k['floors_num']==key['floors_num']) :
                     p16=Image(k['img_path'],212,160)
                     list_data[7][4]=p16
                    # content.append(Graphs.draw_img(k['img_path']))#027
             t=Table(list_data,style=styz, rowHeights=50,colWidths=65)
             content.append(t)
             content.append(Graphs.draw_text_3('<i>   </i><br/>'))
                
    

# # res_summary['flatness_gaps_info']['worst_se_map_infos'][*]['floors_num']
# # 和
# # res_summary['flatness_gaps_info']['defect_map_infos'][*]['floors_num']

#     lsiz= res_summary['flatness_gaps_info']['defect_map_infos']
#     for key in res_summary['flatness_gaps_info']['worst_se_map_infos']:
#        # print(key['floors_num'])
#         content.append(Graphs.draw_text(key['floors_num']))#025
        
#         content.append(Graphs.draw_img(key['img_path']))#026

#         for k in lsiz:
#         #    print(k)
#             if(k['floors_num']==key['floors_num']) :
#                 content.append(Graphs.draw_img(k['img_path']))#027
                


    







               # print(k['img_path']) 

    #print("fdsfdsa",res_summary['project_bird_view_path'])

    #content.append(Graphs.draw_img(contentz['sec_heat_info']['heat_map_path']))
    #other/MD_logo.png



    # for key in contentz.keys():
    #     path=contentz[key]
    #     if isinstance(path,dict):
    #        for keyp in path.keys():
    #            print(path[keyp]) 
    #     else:
    #          print(path) 
             
                       
        
       
        # if path.endwith("png"):
        #     
 
    # 添加段落文字
    # content.append(Graphs.draw_text('众所周知,大数据分析师岗位是香饽饽,近几年数据分析热席卷了整个互联网行业,与数据分析的相关的岗位招聘、培训数不胜数。很多人前赴后继,想要参与到这波红利当中。那么数据分析师就业前景到底怎么样呢?'))
    # # 添加小标题
    # content.append(Graphs.draw_title(''))
    # content.append(Graphs.draw_little_title('不同级别的平均薪资'))
    # # 添加表格
    # data = [
    #     ('职位名称', '平均薪资', '较上年增长率'),
    #     ('数据分析师', '18.5K', '25%'),
    #     ('高级数据分析师', '25.5K', '14%'),
    #     ('资深数据分析师', '29.3K', '10%')
    # ]
    # content.append(Graphs.draw_table(*data))
 
    # # 生成图表
    # content.append(Graphs.draw_title(''))
    # content.append(Graphs.draw_little_title('热门城市的就业情况'))
    # b_data = [(25400, 12900, 20100, 20300, 20300, 17400), (15800, 9700, 12982, 9283, 13900, 7623)]
    # ax_data = ['BeiJing', 'ChengDu', 'ShenZhen', 'ShangHai', 'HangZhou', 'NanJing']
    # leg_items = [(colors.red, '平均薪资'), (colors.green, '招聘量')]
    # content.append(Graphs.draw_bar(b_data, ax_data, leg_items))

 
    # 生成pdf文件
    doc = SimpleDocTemplate(r'D:\work\latex\data\report.pdf', pagesize=A4)
   
    
        
    doc.build(content,onFirstPage=myFirstPage, onLaterPages=myFirstPage)
 

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

如若内容造成侵权/违法违规/事实不符,请联系我们进行投诉反馈qq邮箱809451989@qq.com,一经查实,立即删除!

相关文章

JDK10新特性

目录 传送门一、局部变量类型推断1、概念1.1、简单局部变量推断1.2、自定义对象的推断 2、可以使用的场景3、不能使用的场景4、注意事项 二、垃圾回收器的优化1、前置知识1.1、10种垃圾回收器1.2、分代与分区1.3、10种垃圾回收器小总结 2、优化点 三、新增API1、集合新方法copy…

多线程(初阶六:单例模式)

一、单例模式的简单介绍 二、饿汉模式 三、懒汉模式 四、饿汉模式和懒汉模式的线程安全问题分析 一、单例模式的简单介绍 单例模式是一种设计模式&#xff0c;其中设计模式是软性的规定&#xff0c;与它关联的框架是硬性的规定&#xff0c;这些都是大佬已经设计好了的&…

【工作记录】spider-flow使用插件连接并操作mongodb数据库

前言 前面说过&#xff0c;spider-flow有着非常优秀的插件机制&#xff0c;可以通过插件实现功能的扩展。前面有小伙伴问到mongodb的集成使用&#xff0c;本文就来梳理下spider-flow中使用mongodb插件的过程&#xff0c;其实非常简单。 PS: spider-flow的作者已经实现了一些常…

线程池技术总结

1. 线程池解决了什么问题 线程池是集中管理线程的&#xff0c;以实现线程的重用&#xff0c;降低资源消耗&#xff0c;提高响应速度&#xff0c;提高线程的可管理性等。线程用于执行异步任务&#xff0c;单个的线程既是工作单元也是执行机制&#xff0c;从JDK1.5开始&#xff…

文心一言 VS 讯飞星火 VS chatgpt (147)-- 算法导论12.2 2题

二、用go语言&#xff0c;写出 TREE-MINIMUM 和 TREE-MAXIMUM 的递归版本。 灵捷3.5 。 文心一言&#xff1a; 以下是用 Go 语言编写的树的最大值和最小值的递归版本代码&#xff1a; package main import ( "fmt" ) type TreeNode struct { Val int Le…

哈希表 LeetCode 2661. 找出叠涂元素

2661. 找出叠涂元素 给你一个下标从 0 开始的整数数组 arr 和一个 m x n 的整数 矩阵 mat 。arr 和 mat 都包含范围 [1&#xff0c;m * n] 内的 所有 整数。 从下标 0 开始遍历 arr 中的每个下标 i &#xff0c;并将包含整数 arr[i] 的 mat 单元格涂色。 请你找出 arr 中在 …

LeetCode105.从前序和中序遍历序列构造二叉树

这道题看完题想了几分钟就想到大概的思路了&#xff0c;但是在写的时候有很多细节没注意出了很多问题&#xff0c;然后写了1个多小时&#xff0c;其实这道题挺简单的。 首先&#xff0c;最基本的知识&#xff0c;先序遍历是根左右&#xff0c;中序遍历是左根右&#xff0c;那么…

重磅!GPT-4 API,全面开放使用!

7月7日&#xff0c;OpenAI在官网宣布&#xff0c;GPT-4 API全面开放使用。现所有付费API用户都可直接访问8K上下文的GPT-4&#xff0c;无需任何等待。 预计到7月底之前&#xff0c;OpenAI会向全新的开发人员开放GPT-4 API使用权限。&#xff08;API详细使用说明地址&#xff1…

【AB平台数据建设】从实验平台到数据管道

文章目录 前言1.从AB实验平台聊起(1)AB平台在业务中的发挥那些作用(2)AB平台进行实验工作流介绍 2.实验平台底层数据管道最小MVP解构(1)数据管道数据从哪里来&#xff1f;(2)数据管道的输出数据有哪些&#xff1f; 小结 前言 AB实验平台是一种通过小范围放量&#xff0c;测试不…

安装两个WIN10/WIN11系统到两个盘中,第二个系统依赖原系统盘引导的问题

前段时间折腾装一个双系统&#xff0c;主要两个方面考虑&#xff1a; 1. 原来的系统又许多软件&#xff0c;想着先保留&#xff1b; 2. 系统想安装到一个固态硬盘中&#xff1b; 在安装的过程中遇到了一些问题&#xff0c;这里记录分享一下。 问题1&#xff0c;运行系统自动安装…

深入 C 语言和程序运行原理 实战项目代码在CentOS 7上编译

cat /etc/redhat-release看到操作系统的版本是CentOS Linux release 7.6.1810 (Core)&#xff0c;uname -r可以看到内核版本是3.10.0-957.21.3.el7.x86_64。 安装gtest 参考博客《使用gtest和lcov测试代码覆盖率》 wget https://github.com/google/googletest/archive/refs/…

Android NDK项目创建的时候C++版本选择都有什么区别

Android ndk项目在创建的时候有C版本选择有4个选项&#xff0c;分别是Toolchain default&#xff0c; C11&#xff0c;C14&#xff0c;C17。 C是一种广泛使用的编程语言&#xff0c;它不断地发展和更新&#xff0c;以适应不同的需求和场景。C的语言标准是由国际标准化组织&…

2.qml 3D-View3D类学习

本章我们来学习View3D类。 View3D是用来渲染3D场景并显示在2D平面的类&#xff0c;并且该类可以放在QML2D下继承于Item子类的任何场景中&#xff0c;比如将View3D放在Rectangle中: Rectangle {width: 200 height: 200color: "red"View3D { anchors.fill: parent…

九章量子计算机:引领量子计算的新篇章

九章量子计算机:引领量子计算的新篇章 一、引言 随着科技的飞速发展,量子计算已成为全球科研领域的前沿议题。九章量子计算机作为中国自主研发的量子计算机,具有划时代的意义。本文将深入探讨九章量子计算机的原理、技术特点、应用前景等方面,带领读者领略量子计算的魅力…

什么是OV SSL证书?

OV SSL证书是组织验证SSL证书的缩写&#xff0c;是三个SSL验证级别之一的名称。 OV是指实名类型的SSL证书&#xff0c;这个实名其实只要证明发布者身份就可以签发&#xff0c;无论是个人还是企业都可以进行申请。 SSL证书大家都知道就是用于网站地址的http改成https加密协议的…

gromacs学习及使用(1)

1.Gromacs的使用 2.Gromacs 的第一步_能量最小化 3.分子动力学模拟Gromacs一般使用步骤&#xff08;空蛋白&#xff09; 4.GROMACS优化(没看懂) 5.GROMACS快速入门&#xff08;有好东西&#xff09; GROMACS中文教程 gmx editconf -f xxx -o xxx6.GROMACS运行参数之em.mdp文…

Burp Suite序列之目录扫描

如果你是一名渗透测试爱好者或者专业人士&#xff0c;你一定知道目录扫描是渗透测试中非常重要的一步。通过目录扫描&#xff0c;我们可以发现网站的敏感信息&#xff0c;隐藏的功能&#xff0c;甚至是后台入口。目录扫描可以帮助我们更好地了解目标网站的结构和漏洞。 但是&a…

四大视角看EMC设计:滤波、接地、屏蔽、PCB布局

电磁干扰的主要方式是传导干扰、辐射干扰、共阻抗耦合和感应耦合。对这几种途径产生的干扰我们应采用的相应对策&#xff1a;传导采取滤波&#xff0c;辐射干扰采用屏蔽和接地等措施&#xff0c;就能够大大提高产品的抵抗电磁干扰的能力&#xff0c;也可以有效的降低对外界的电…

Shell循环:for(三)

示例&#xff1a;使用for实现批量主机root密码的修改 一、前提 已完成密钥登录配置&#xff08;ssh-keygen&#xff09;定义主机地址列表并了解远程修改密码的方法 [rootlocalhost ~]# ssh-keygen #设置免密登录[rootlocalhost ~]# ssh-copy-id 192.168.151.151 二、演示…

【趣味JavaScript】一文让你读懂JavaScript原型对象与原型链的继承,探秘属性的查找机制! 《重置版》

&#x1f680; 个人主页 极客小俊 ✍&#x1f3fb; 作者简介&#xff1a;web开发者、设计师、技术分享博主 &#x1f40b; 希望大家多多支持一下, 我们一起学习和进步&#xff01;&#x1f604; &#x1f3c5; 如果文章对你有帮助的话&#xff0c;欢迎评论 &#x1f4ac;点赞&a…