qt qml从网络服务器显示图像到我的qt quick app

qt qml display image from web server to my qt quick app

您好,我将图像存储在 google 驱动器或 mega 中,我想使用我的 qt android 应用程序显示它 我认为问题是这个 QML Image: Erreur de décodage Format d'image non support https://drive.google.com/file/d/**102A4WrjwOlySb8LWfMZ7CiIrt0f-12CO/view?usp=sharing** this work well to my app https://zupimages.net/up/21/05/cwkf.png

您应该按照建议 here 稍微修改 Google 驱动器 URL 以获得直接 link 图像文件。

修改后的URL格式:

https://drive.google.com/uc?export=download&id=FILE_ID

显示您的 Google 驱动器图像的示例 QML 图像:

Image {
    source: "https://drive.google.com/uc?export=download&id=102A4WrjwOlySb8LWfMZ7CiIrt0f-12CO"
}