간단한 예제
import QtQuick 2.15
import QtQuick.Effects
Rectangle {
width: 500
height: 500
color: "#fff"
Text {
text: "MultiEffect Demo"
font.pixelSize: 50
color: "white"
anchors.centerIn: parent
layer.enabled: true
layer.effect: MultiEffect {
blurEnabled: true
blur: 0.1
shadowEnabled: true
shadowBlur: 0.2
shadowHorizontalOffset: 2
shadowVerticalOffset: 2
shadowColor: "gray"
colorization: 1
colorizationColor: "#f3f3f3"
// brightness: 0.2
// contrast: 1.5
// saturation: 1.2
}
}
}