import QtQuick 2.4 import Ubuntu.Components 1.3 import Ubuntu.Thumbnailer 0.1 MainView { width: units.gu(48) height: units.gu(60) Page { title: "Simple page" Column { anchors.fill: parent spacing: units.gu(2) UbuntuShape { anchors.horizontalCenter: parent.horizontalCenter width: units.gu(20) height: units.gu(20) backgroundColor: "orange" source: Image { source: "sample.png" sourceSize { width: parent.width height: parent.height } } } UbuntuShape { anchors.horizontalCenter: parent.horizontalCenter width: units.gu(20) height: units.gu(20) backgroundColor: "orange" source: Image { source: "image://thumbnailer//home/phablet/sample.png" sourceSize { width: parent.width height: parent.height } } } } } }