summaryrefslogtreecommitdiffstats
path: root/examples/declarative/imageelements/image/scale_to_fit.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/declarative/imageelements/image/scale_to_fit.qml')
-rw-r--r--examples/declarative/imageelements/image/scale_to_fit.qml22
1 files changed, 0 insertions, 22 deletions
diff --git a/examples/declarative/imageelements/image/scale_to_fit.qml b/examples/declarative/imageelements/image/scale_to_fit.qml
deleted file mode 100644
index 724a36e..0000000
--- a/examples/declarative/imageelements/image/scale_to_fit.qml
+++ /dev/null
@@ -1,22 +0,0 @@
-import Qt 4.7
-
-// Here, we implement "Scale to Fit" behaviour "manually", rather
-// than using the preserveAspect property.
-//
-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: Math.min(parent.width/width,parent.height/height)
- }
-}