aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/scenegraph_lancelot/data/images/linear_smooth_0_4.qml
blob: b6987cc3a460e749690b2859220631c51227e5e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import QtQuick 2.0

Rectangle {
    width: 320
    height: 480
    smooth: true
    Text{
        text: "scale 0.4"
        z: 1
    }
    Image{
        width: 320
        height: 480
        id: bwLinear
        source: "../shared/bw_1535x2244.jpg"
        anchors.fill: parent
        sourceSize.height: 2244
        sourceSize.width: 1535
        scale: 0.4
    }
}