文件名称:QT多线程实现图片缩略图
文件大小:1.28MB
文件格式:TAR
更新时间:2012-10-01 08:51:35
QT 多线程 图片
基于多线程的机制实现图片缩略图的显示。 QThread* thread = new ThumbnailThread(filename, 10 - waitseconds); waitseconds ++; connect(thread, SIGNAL(thumbnailFinished(QImage)), this, SLOT(addThumbnail(QImage))); connect(thread, SIGNAL(thumbnailFailed(const QString)), this, SLOT(showError(const QString))); connect(thread, SIGNAL(finished()), this, SLOT(deleteThread())); thread->start();