Giriş
Sanırım QPrinter ile kullanılıyor.
Constructor
Şöyle yaparız.
Şöyle yaparız.
Şöyle yaparız.
Şöyle yaparız.
Şöyle yaparız.
Sanırım QPrinter ile kullanılıyor.
Constructor
Şöyle yaparız.
auto textDoc = new QTextDocument();
pageCount metoduŞöyle yaparız.
for (auto curPageNum = 1; curPageNum <= textDoc->pageCount(); ++curPageNum) {
...
}
setDocumentMargin metoduŞöyle yaparız.
textDoc->setDocumentMargin(0);
setHtml metoduŞöyle yaparız.
QString html = R"(
<!DOCTYPE html>
<html>
...
</html>
)"
textDoc->setHtml(html);
setPageSize metoduŞöyle yaparız.
const auto width = 100;
const auto height = 200;
textDoc->setPageSize(QSizeF {width, height});
Hiç yorum yok:
Yorum Gönder