Try like this…
Image {
id: myImage
property bool effectEnabled: true
id: backgroundImage
anchors.fill: parent
source: master.backgroundImage
}
GaussianBlur {
id: backgroundBlur
anchors.fill: myImage
visible: myImage.effectEnabled
source: myImage
radius: 8
samples: 16
transparentBorder: false
}
if it doesn’t work put you image inside a loader that it will do the trick…
↧