gpt4 book ai didi

c++ - 将 Qwtplot 保存为图像

转载 作者:行者123 更新时间:2023-11-30 05:36:01 25 4
gpt4 key购买 nike

我正在使用 QwtPlotRenderer 将绘图保存到文件。我还使用 QImage::grabWidget() 将绘图保存到 QPixmap。

但在这两种情况下,生成的图像都是:

enter image description here

如您所见,曲线在结果图像中不可见,而在 myplot->show() 函数中我使用的是完整输出。我该如何解决这个问题?

这是我的代码:

#include "QApplication"
#include<qwt_plot_layout.h>
#include<qwt_plot_curve.h>
#include<qwt_scale_draw.h>
#include<qwt_scale_widget.h>
#include<qwt_legend.h>
#include<qwt_plot_renderer.h>
class TimeScaleDraw:public QwtScaleDraw
{
public:
TimeScaleDraw(const QTime & base)
:baseTime(base)
{
}
virtual QwtText label(double v)const
{
QTime upTime = baseTime.addSecs((int)v);
return upTime.toString();
}
private:
QTime baseTime;
};

int main(int argc,char * argv[])
{
QApplication a(argc,argv);

QwtPlot * myPlot = new QwtPlot(NULL);

myPlot->setAxisScaleDraw(QwtPlot::xBottom,new TimeScaleDraw(QTime::currentTime()));
myPlot->setAxisTitle(QwtPlot::xBottom,"Time");
myPlot->setAxisLabelRotation(QwtPlot::xBottom,-50.0);
myPlot->setAxisLabelAlignment(QwtPlot::xBottom,Qt::AlignLeft|Qt::AlignBottom);

myPlot->setAxisTitle(QwtPlot::yLeft,"Speed");
QwtPlotCurve * cur = new QwtPlotCurve("Speed");
QwtPointSeriesData * data = new QwtPointSeriesData;
QVector<QPointF>* samples=new QVector<QPointF>;
for ( int i=0;i<60;i++)
{
samples->push_back(QPointF(i,i*i));
}

data->setSamples(*samples);
cur->setData(data);
cur->attach(myPlot);

//myPlot->show();


QPixmap pix = QPixmap::grabWidget(myPlot);
std::cout<<pix.save("der.png","PNG")<<std::endl;
QPixmap pixmap (400,400);
QPainter * painter=new QPainter(&pixmap);

QwtPlotRenderer rend;

rend.render(myPlot,painter,myPlot->geometry());
pixmap.save("Dene.jpg");
return a.exec();
}

最佳答案

replot() 函数是实际绘制图形的函数。

既然你想保存图表的图片,那么首先调用 replot() 是有意义的。

关于c++ - 将 Qwtplot 保存为图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33653544/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com