<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[QQuickImageProvider update notification]]></title><description><![CDATA[<p dir="auto">I use a QQuickImageProvider to provide images from my C++ class to QML user interfaces.<br />
It works fine but the QML page request the image only at creation. I update the image in my QQuickImageProvider class and I want to update the QML Image according.</p>
<p dir="auto">I set the cached property to false, but it didn't help.</p>
]]></description><link>https://forum.qt.io/topic/67545/qquickimageprovider-update-notification</link><generator>RSS for Node</generator><lastBuildDate>Sat, 16 May 2026 02:05:46 GMT</lastBuildDate><atom:link href="https://forum.qt.io/topic/67545.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 26 May 2016 15:06:48 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to QQuickImageProvider update notification on Thu, 26 May 2016 16:44:21 GMT]]></title><description><![CDATA[<p dir="auto">The workaround that appends a suffix to the requested image does the trick:</p>
<pre><code>image.source = "image://images/myImage?id=" + Math.random()
</code></pre>
<p dir="auto">but it's quite dirty. I wonder if there is a more elegant way (i.e. using signals) to keep the image source updated.</p>
]]></description><link>https://forum.qt.io/post/329883</link><guid isPermaLink="true">https://forum.qt.io/post/329883</guid><dc:creator><![CDATA[Mark81]]></dc:creator><pubDate>Thu, 26 May 2016 16:44:21 GMT</pubDate></item></channel></rss>