如何 通过QGalleryQueryModel 制作一个简单的图片浏览器
(Liuting -) |
(Liuting - - →介绍) |
||
| Line 29: | Line 29: | ||
== 介绍 == | == 介绍 == | ||
| + | QML 提供了一个 plugin DocumentGalleryMode ,通过使用这个plugin,我们可以很简单的实现一个图片浏览器,但是随着图片的增加,我们会发现加载速度十分缓慢,用户体验很差,这是由于QML 内部实现采取高质量的平滑缩放耗时很长,所以我们不的不重新实现自己的model ,并在线程中通过QImageReader 实现大量图片的快速缩放。接下来我们通过代码片段来看下具体的实现过程 | ||
| + | |||
== 代码实现 == | == 代码实现 == | ||
== 代码下载== | == 代码下载== | ||
Revision as of 12:20, 28 March 2012
Delete instructional text in italic
This article explains how to ... Replace the abstract text with a short paragraph (or sentence) describing what the topic covers.
Enter article metadata as described below. Note that this template can be placed anywhere in the article. Do not remove parameters that you do not use
Article Metadata
Contents |
介绍
QML 提供了一个 plugin DocumentGalleryMode ,通过使用这个plugin,我们可以很简单的实现一个图片浏览器,但是随着图片的增加,我们会发现加载速度十分缓慢,用户体验很差,这是由于QML 内部实现采取高质量的平滑缩放耗时很长,所以我们不的不重新实现自己的model ,并在线程中通过QImageReader 实现大量图片的快速缩放。接下来我们通过代码片段来看下具体的实现过程
代码实现
代码下载
相关链接
Add categories below. Remove Category:Draft when the page is complete or near complete

