int main( int argc, char *argv[] )
{
QApplication app( argc, argv );
QImage *image = new QImage;
image->load( "xp.jpg" );
QLabel *label = new QLabel;
label->setPixmap( QPixmap::fromImage( *image ) );
label->show();
return app.exec();
};
在w7系统下可以正常显示图片,而在xp下却无法显示jpg类型的(png类型的可以)。这是为何,求解决方案?
------解决方案--------------------
发布的时候带插件了吗
------解决方案--------------------
发布的时候需要带上插件:plugins/imageformats