aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickitemlayer/data/itemImageLayer.qml
blob: 1f05aa882f8d21d394bc9edfedb00bcc39a56836 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import QtQuick

Item {
	width: 300
	height: 300

	Image {
        objectName: "image"
		anchors.fill: parent
		fillMode: Image.PreserveAspectFit
        source: "qt-logo.png"
		layer.enabled: true
	}
}