summaryrefslogtreecommitdiffstats
path: root/examples/declarative/aspectratio/scale_to_fit_simple.qml
blob: dcccd69f9ad1f4889522ba12e8a7ab47062069eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import Qt 4.6

// Here, we implement "Scale to Fit" behaviour, using the
// fillMode property.
//
Rectangle {
    // default size: whole image, unscaled
    width: Face.width
    height: Face.height
    color: "gray"
    clip: true

    Image {
        id: Face
        source: "pics/face.png"
        fillMode: "PreserveAspectFit"
        anchors.fill: parent
    }
}