QT中用label标签显示本地图片的方法

Posted sanpi1992

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了QT中用label标签显示本地图片的方法相关的知识,希望对你有一定的参考价值。

#define CIMAGE_H
#include<QtGui/QDialog>
#include<QLabel>

class QLabel;
class QLineEdit;
class QPushButton;

class CImage:public QDialog
{
Q_OBJECT
public:
CImage(QWidget *parent=0);
virtual ~CImage() {}
private:
QLabel *ImageLabel;
QPushButton *ImageButton;
public slots:
void IsertImage();
};

#endif // CIMAGE_H


#include <QtGui/QtGui>
#include <QMovie>
#include "CImage.h"

CImage::CImage(QWidget *parent):QDialog(parent)
{
ImageButton=new QPushButton(tr("浏览"));
ImageLabel=new QLabel(tr("图片"));
QVBoxLayout *vboxLayout=new QVBoxLayout;
vboxLayout->addWidget(ImageLabel);
vboxLayout->addWidget(ImageButton);
setLayout(vboxLayout);

connect(ImageButton,SIGNAL(clicked()),this,SLOT(IsertImage()));
setWindowTitle(tr("图片预览"));
resize(200,300);
}

void CImage::IsertImage()
{
ImageButton=qobject_cast<QPushButton*>(sender());
QString fileName=QFileDialog::getOpenFileName( this,
tr("打开文件"),
"/usr/local/Trolltech",
tr("任何文件(*.*)"
";;文本文件(*.txt)"
";;XML文件(*.xml)"
";;Images (*.png *.xpm *.jpg)"));
QMovie *move=new QMovie(fileName);

ImageLabel->setMovie(move);
move->start();
}


#include<QtGui/QtGui>
#include"CImage.h"

int main(int argc,char*argv[])
{
QApplication app(argc,argv);
QTextCodec::setCodecForTr(QTextCodec::codecForName("gb18030"));
CImage dlg;
return dlg.exec();
}

以上是关于QT中用label标签显示本地图片的方法的主要内容,如果未能解决你的问题,请参考以下文章

PHP 简介

网络iptables使用

关于HTML5代码总结。

linux操作系统及常见命令

再理一下prerouting和postrouting等插入点

13.01python语言基础(元类)