如何让SVG图片在移动设备上显示?

发布于 2024-10-12 00:07:57 字数 150 浏览 5 评论 0原文

我正在构建一个通过 QT 样式表自定义的 QT 应用程序。我用于控件的图像是 SVG 图像,在 Linux 中运行时可以正确渲染。但是当我将 QT 应用程序加载到移动设备中时,SVG 图像似乎没有出现。

有谁知道发生了什么事吗?我应该怎么做才能使 SVG 图像正常工作?

I am building a QT application which I customize through QT stylesheets. The images I use for the controls are SVG images which are rendered properly when ran in Linux. But when I load the QT application into a mobile device, the SVG images don't seem to appear.

Does anyone know what's going on? What should I do to make the SVG images work?

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

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

发布评论

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

评论(1

白日梦 2024-10-19 00:07:57

首先检查模拟器中的日志文件,找出发生的错误:

在移动设备上实现 svg 时可能会因以下情况而失败。
1.由于操作系统不同,内存占用问题;移动操作系统体积相对较小。
2.运行的设备类型。
3.用于实现SVG应用程序的框架。框架可用性
4.有时图像编码也可能是一个问题。

因此需要一个在移动设备上支持所有这些字符的框架。
目前可用的开源和商业框架很少。您可以从此链接获得更多信息
http://developers.sun.com/mobility/midp/articles/s2dvg /index.html

First check the log file in your emulator and find out what is the error occurred:

svg while implementing on mobile device may fail because of the following scenarios.
1.Memory footpring issue because of different OS;mobile OS is relatively small in size.
2.Device type on which it runs.
3.Framework that is used for implementing SVG applications.The framework availability
4.Sometime image encoding can also be an issue.

So need to get a framework that support all these characters on mobile device.
Currently there are few open source and commercail frameworks available.You will get more from this link
http://developers.sun.com/mobility/midp/articles/s2dvg/index.html

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