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

// 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
        smooth: true
        source: "pics/face.png"
        fillMode: Image.PreserveAspectCrop
        anchors.fill: parent
    }
}