Problem: SVG images are displayed as bitmap (raster) not vector graphics. WTF?
import QtQuick 1.0
Image {
source: "background.svg"
}
Problem: SVG images are displayed as bitmap (raster) not vector graphics. WTF?
import QtQuick 1.0
Image {
source: "background.svg"
}
What exactly do you mean? At some point a vector image needs to be rasterized to be displayed.
i agree but if you're having resizing issue that is because you need to use the sourceSize property and not the size
Bookmarks