使用QtXlsx库生成报表,项目分享

要求:根据分布式压力图像生成Excel报表,测量平面平整度

1、图像为

使用QtXlsx库生成报表,项目分享_第1张图片

2、生成报告样式

 使用QtXlsx库生成报表,项目分享_第2张图片

部分源码

QXlsx::Document xlsx;
    xlsx.addSheet("Alysis");//添加sheetNmae表
    //报表标题
    xlsx.setRowHeight(1,60);
    Format title_format;
    title_format.setFontSize(18);
    title_format.setFontBold(true);
    title_format.setFontColor(QColor(Qt::black));
    title_format.setFontUnderline(Format::FontUnderlineSingle);
    title_format.setBorderStyl

你可能感兴趣的:(工业,图像处理,qt,经验分享)