aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/scenegraph_lancelot/data/images/jpeg_scaled.qml
blob: 26b54b0b0aec85d09e4fcff21f4eef5e060a74be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import QtQuick 2.0

Rectangle {
    width: 320
    height: 480
    Image{
        x: 0
        y: 0
        width: 160
        height: 240
        source: "../shared/col320x480.jpg"
    }

    Image{
        x: 180
        y: 20
        width: 113
        height: 199
        source: "../shared/col320x480.jpg"
    }

    Image{
        x: 160
        y: 240
        sourceSize.width: 160
        sourceSize.height: 240
        source: "../shared/col320x480.jpg"
    }

    Image{
        x: 20
        y: 260
        sourceSize.width: 113
        sourceSize.height: 199
        source: "../shared/col320x480.jpg"
    }

}