Qt:: 编辑图像
我想在 Qt 应用程序中编辑图像,我使用了两个 QLabel 并在每个上设置了两个不同的图像(使用 QPixmap),现在我想在另一个图像上设置一个图像(就像照片 DJ 设置新框架并将卡通添加到图像中一样)。
我为此使用拖放,并且可以移动(拖动)图像,但该拖动的图像会覆盖另一个图像。我希望将图像拖动到第二个图像上,并在第二个图像上设置拖动图像的位置而不覆盖它。 我已经添加了我想要的图像(编辑图像)。
I want to edit image in Qt application, I have use two QLabel
and set two different image(using QPixmap
) on each, now I wan to set one image over another(just like photo DJ set new Frame and Add Cartoons to Image).
I use drag and drop for this and I am able to move (drag) image, but this dragged image override another image. I want dragged image over second image and set position of dragged image on second image not override it.
I have added image that I want(Edit Image).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要在第二个图像上渲染第一个图像,请尝试类似
“其中 X,Y 通过单击或鼠标跟踪设置”之类的操作。
To render the first image over the second, try something like
Where X,Y is set with clicks or mouse-tracking.