summaryrefslogtreecommitdiffstats
path: root/tests/auto/pdfquick/pdfpageimage/data/pdfPageImage.qml
blob: a268bf14b96ab33d748d349c549e556351e708dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import QtQuick
import QtQuick.Pdf

Item {
    width: 320
    height: 320

    PdfDocument {
        id: doc
        source: "bookmarksAndLinks.pdf"
    }

    PdfPageImage {
        anchors.centerIn: parent
    }
}