如何让SVG图片在移动设备上显示?
我正在构建一个通过 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先检查模拟器中的日志文件,找出发生的错误:
在移动设备上实现 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