将 CfbsBitmap 格式转换为 JPG
我正在使用 symbian 和 Qt 4.7 做一个移动应用程序,
当我保存 CFBSBitmap 数据时,我有一个 CFBSBitmap 数据,格式是 .mbm 文件,我希望将其转换为保存为 jpg 格式。
任何人都可以在这方面帮助我,因为我是 Qt 和 Symbian 的新手
I am doing a mobile application using symbian and Qt 4.7
I have a CFBSBitmap data when i save the CFBSBitmap data, the format is a .mbm file and I wish to convert it to be saved as jpg format.
Can anyone help me in this area as I am quite a newbie in Qt and Symbian
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
QImage
提供了save
函数采用参数format
。 只需指定JPG
格式。QImage
provides asave
function that takes a parameterformat
. Just specify theJPG
format.