Qt4 中的 BitBlt?
在 Qt4 的特定位置将一个 QImage 复制到另一个 QImage 的推荐方法是什么?
QImage::bitblt 在 Qt4 中被删除。
QImage 现在需要转换为 PixMap 并返回吗?
What is the recommended method of copying one QImage into another at a particular position in Qt4?
QImage::bitblt was removed in Qt4.
Does the QImage now need to be converted to a PixMap and back?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 QPainter 绘制图像。
Use QPainter to draw to your image.
来自 Qt Assistant:“请改用 copy() 或 QPainter::drawImage()。”
From Qt Assistant: "Use copy() or QPainter::drawImage() instead."