Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
Try rendering through canvas if you really need to. In general, svg is supported - a quote from the official documentation :
Example:
import QtQuick 1.0
import QtDesktop 0.1
Window {
title: "SVG Test"
width: 640
height: 360
visible: true
focus: true
Keys.onEscapePressed: Qt.quit()
Image {
source: "markc.svg"
sourceSize.width: parent.width
sourceSize.height: parent.height
}
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question