import QtQuick 2.15 Item { id: root width: 566 height: 468 property font f: Qt.font ({ family: "Open Sans", pixelSize: 40, unicodeCoverage: [[0x30,0x3A]], // 0-9: }) Text { id: zero x: 49 y: 385 text: "0" font.pixelSize: 40 rotation: -120 color: "white" font.family: "Open Sans" } Text { id: one x: 14 y: 255 color: "#ffffff" text: "1" font.pixelSize: 40 rotation: -90 font.family: "Open Sans" } Text { id: two x: 49 y: 126 color: "#ffffff" text: "2" font.pixelSize: 40 rotation: -60 font.family: "Open Sans" } Text { id: three x: 143 y: 31 color: "#ffffff" text: "3" font.pixelSize: 40 rotation: -40 font.family: "Open Sans" } Text { id: four x: 273 y: -3 color: "#ffffff" text: "4" font.pixelSize: 40 rotation: 0 font.family: "Open Sans" } Text { id: five x: 402 y: 32 color: "#ffffff" text: "5" font.pixelSize: 40 rotation: 30 font.family: "Open Sans" } Text { id: six x: 497 y: 126 color: "#ffffff" text: "6" font.pixelSize: 40 rotation: 60 font.family: "Open Sans" } Text { id: seven x: 530 y: 256 color: "#ffffff" text: "7" font.pixelSize: 40 rotation: 90 font.family: "Open Sans" } Text { id: seven1 x: 497 y: 385 color: "#ffffff" text: "8" font.pixelSize: 40 rotation: 120 font.family: "Open Sans" } }