blob: 5593ab8416421b36b3198bcaf92c5b15f2b70a9e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import Qt 4.7
// Here, we implement a variant of "Scale and Crop" behaviour, where we
// crop the sides if necessary to fully fit vertically, but not the reverse.
//
Rectangle {
// default size: whole image, unscaled
width: face.width
height: face.height
color: "gray"
clip: true
Image {
id: face
smooth: true
anchors.centerIn: parent
source: "pics/face.png"
x: (parent.width-width*scale)/2
y: (parent.height-height*scale)/2
scale: parent.height/height
}
}
|