aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/scenegraph_lancelot/data/images/jpeg_scaled.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/scenegraph_lancelot/data/images/jpeg_scaled.qml')
-rw-r--r--tests/manual/scenegraph_lancelot/data/images/jpeg_scaled.qml38
1 files changed, 38 insertions, 0 deletions
diff --git a/tests/manual/scenegraph_lancelot/data/images/jpeg_scaled.qml b/tests/manual/scenegraph_lancelot/data/images/jpeg_scaled.qml
new file mode 100644
index 0000000000..26b54b0b0a
--- /dev/null
+++ b/tests/manual/scenegraph_lancelot/data/images/jpeg_scaled.qml
@@ -0,0 +1,38 @@
+import QtQuick 2.0
+
+Rectangle {
+ width: 320
+ height: 480
+ Image{
+ x: 0
+ y: 0
+ width: 160
+ height: 240
+ source: "../shared/col320x480.jpg"
+ }
+
+ Image{
+ x: 180
+ y: 20
+ width: 113
+ height: 199
+ source: "../shared/col320x480.jpg"
+ }
+
+ Image{
+ x: 160
+ y: 240
+ sourceSize.width: 160
+ sourceSize.height: 240
+ source: "../shared/col320x480.jpg"
+ }
+
+ Image{
+ x: 20
+ y: 260
+ sourceSize.width: 113
+ sourceSize.height: 199
+ source: "../shared/col320x480.jpg"
+ }
+
+}