aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/scenegraph_lancelot/data/images/fill_mode.qml
blob: d391cd73f951689e8b7e7c37224a1fe525eecd63 (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
import QtQuick 2.0

Rectangle {
    width: 320
    height: 480
    smooth: true
    Rectangle{
        id: rect0_0
        width: 160
        height: 160
        x: 0
        y: 0
        Text{
            text: "Stretch"
            x: 20
            y: 20
            color: "red"
            font.family: "Helvetica"
            font.pointSize: 24
            z: 1
        }
        Image{
            id: bwLinear1
            width: 160
            height: 160
            source: "../shared/bw_1535x2244.jpg"
            sourceSize.width: 1535
            sourceSize.height: 2244
        }
    }
    Rectangle{
        id: rect0_1
        width: 160
        height: 160
        x: 180
        y: 0
        Text{
            text: "Preserve\naspect\nfit"
            x: 20
            y: 20
            color: "red"
            font.family: "Helvetica"
            font.pointSize: 24
            z: 1
        }
        Image{
            id: bwLinear2
            width: 160
            height: 160
            source: "../shared/bw_1535x2244.jpg"
            fillMode: Image.PreserveAspectFit
            sourceSize.width: 1535
            sourceSize.height: 2244
        }
    }
    Rectangle{
        id: rect1_0
        width: 160
        height: 160
        x: 0
        y: 160
        Text{
            text: "Preserve\naspect\ncrop"
            x: 20
            y: 20
            color: "red"
            font.family: "Helvetica"
            font.pointSize: 24
            z: 1
        }
        Image{
            id: bwLinear3
            width: 160
            height: 160
            source: "../shared/bw_1535x2244.jpg"
            fillMode: Image.PreserveAspectCrop
            sourceSize.width: 1535
            sourceSize.height: 2244
        }

    }
    Rectangle{
        id: rect1_1
        width: 160
        height: 160
        x: 180
        y: 160
        Text{
            text: "Tile"
            x: 20
            y: 20
            color: "red"
            font.family: "Helvetica"
            font.pointSize: 24
            z: 1
        }
        Image{
            id: bwLinear4
            width: 160
            height: 160
            source: "../shared/bw_1535x2244.jpg"
            fillMode: Image.Tile
            sourceSize.width: 1535
            sourceSize.height: 2244
        }
    }

    Rectangle{
        id: rect2_0
        width: 160
        height: 160
        x: 0
        y: 320
        Text{
            text: "Tile\nvertically"
            x: 20
            y: 20
            color: "red"
            font.family: "Helvetica"
            font.pointSize: 24
            z: 1
        }
        Image{
            id: bwLinear5
            width: 160
            height: 160
            source: "../shared/bw_1535x2244.jpg"
            fillMode: Image.TileVertically
            sourceSize.width: 1535
            sourceSize.height: 2244
        }
    }
    Rectangle{
        id: rect2_1
        width: 160
        height: 160
          x: 180
          y: 320
          Text{
              text: "Tile horizontally"
              x: 20
              y: 20
              color: "red"
              font.family: "Helvetica"
              font.pointSize: 24
              z: 1
          }
          Image{
              id: bwLinear6
              width: 160
              height: 160
              source: "../shared/bw_1535x2244.jpg"
              fillMode: Image.TileHorizontally
              sourceSize.width: 1535
              sourceSize.height: 2244
          }
    }






}