aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickimage/data/hugeImages.qml
blob: 00aad415f0c140b568d06302ae585c96112a7574 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright (C) 2016 Jolla Ltd, author: <gunnar.sletta@jollamobile.com>
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

import QtQuick 2.0

Item {
    width: 200
    height: 200

    Image {
        source: "toowide.png"
        width: 100
        height: 100
    }

    Image {
        x: 100
        source: "tootall.png"
        width: 100
        height: 100
    }
}