Re: Saving Image from QML
Are you sure you are using Qt 4.3.2? QtQuick 2.6 import seems to indicate you're using at least Qt 5.6.
How is the code you posted related to the problem?
Re: Saving Image from QML
Hello!! Thank you for the response. It's not about the versions. As you can see from the code I have an Image and I want to Save that Image.
Re: Saving Image from QML
It's all about the versions because QtQuick 2 is totally different than QtQuick 1.
Re: Saving Image from QML
Sorry, I have 2 versions. My Qt quick is 2.6 and the version I am using is Qt 5.8. Could you help me with the solution?
Re: Saving Image from QML
There is no easy way to grab a single item in QtQuick 2. You can only render the complete scene to an offscreen buffer (FBO) and convert that to an image. But that's going to contain the whole scene, not a single item.