我是靠谱客的博主 潇洒萝莉,最近开发中收集的这篇文章主要介绍使用QCustomPlot遇到的问题及解决,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

最近工作需要,产品界面中需要用到显示实时波形,于是使用了QCustomPlot类库。这里写一下遇到的问题和解决。

E:HH-PM001build-detecter-Desktop_Qt_5_8_0_MinGW_32bit-Debugdebugqcustomplot.o:-1: In function `ZN11QCustomPlot7savePdfERK7QStringiiN3QCP9ExportPenES2_S2_':

E:HH-PM001trunkQCustomPlotqcustomplot.cpp:14244: error: undefined reference to `_imp___ZN8QPrinterC1ENS_11PrinterModeE'

E:HH-PM001trunkQCustomPlotqcustomplot.cpp:14246: error: undefined reference to `_imp___ZN8QPrinter15setOutputFormatENS_12OutputFormatE'

E:HH-PM001trunkQCustomPlotqcustomplot.cpp:14247: error: undefined reference to `_imp___ZN8QPrinter12setColorModeENS_9ColorModeE'

E:HH-PM001trunkQCustomPlotqcustomplot.cpp:14248: error: undefined reference to `_imp___ZNK8QPrinter11printEngineEv'

E:HH-PM001trunkQCustomPlotqcustomplot.cpp:14249: error: undefined reference to `_imp___ZNK8QPrinter11printEngineEv'

E:HH-PM001trunkQCustomPlotqcustomplot.cpp:14244: error: undefined reference to `_imp___ZN8QPrinterD1Ev'

E:HH-PM001trunkQCustomPlotqcustomplot.cpp:14244: error: undefined reference to `_imp___ZN8QPrinterD1Ev'

collect2.exe:-1: error: error: ld returned 1 exit status

认真看了一下,原来我忘记在工程文件.pro文件中添加下面的语句了。

QT
+=
printsupport
添加后,一切正常,因为qcustomplot.cpp中使用到了打印功能,所以这个是需要添加的。

 

 

 

 

 

 

最后

以上就是潇洒萝莉为你收集整理的使用QCustomPlot遇到的问题及解决的全部内容,希望文章能够帮你解决使用QCustomPlot遇到的问题及解决所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(45)

评论列表共有 0 条评论

立即
投稿
返回
顶部