诺基亚 Qt Mobility:如何从存储卡获取照片?

发布于 2024-10-09 07:01:18 字数 58 浏览 5 评论 0原文

我正在诺基亚 Qt 中制作照片库应用程序,我想显示设备存储卡中的图片。 Qt中如何获取内存卡中的图片?

I am making photo gallery application in Nokia Qt, I want to show pictures from device's memory card. How can i get pictures from memory card in Qt?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

妄司 2024-10-16 07:01:18

作为 eburger 答案的附录,QtMobility 的 QSystemStorageInfo 可用于确定哪个(或是否)一个驱动器是存储卡驱动器:

QSystemStorageInfo systemInfo;
QStringList driveList = systemInfo.logicalDrives();
QString memPath = "";
for (int index = 0; index < driveList.count(); index++)
{
    if (QSystemStorageInfo::RemovableDrive == systemInfo.typeForDrive(driveList[index]))

    {
        memPath = driveList[index];
        break; }
}

As an addendum to eburger's answer, QtMobility's QSystemStorageInfo can be used to determine which (or if) one of the drives is the memory card drive:

QSystemStorageInfo systemInfo;
QStringList driveList = systemInfo.logicalDrives();
QString memPath = "";
for (int index = 0; index < driveList.count(); index++)
{
    if (QSystemStorageInfo::RemovableDrive == systemInfo.typeForDrive(driveList[index]))

    {
        memPath = driveList[index];
        break; }
}
小情绪 2024-10-16 07:01:18

QtMobility 中的 DocumentGallery 应该完成这项工作: http://doc.qt.nokia .com/qtmobility-1.1.0/gallery.html。使用过滤器过滤掉没有存储卡驱动器号的文件。

DocumentGallery in QtMobility should do the job: http://doc.qt.nokia.com/qtmobility-1.1.0/gallery.html. Use filters to filter out files, that dont have the memory card drive letter.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文