diff options
Diffstat (limited to 'src-qt5')
-rw-r--r-- | src-qt5/desktop-utils/lumina-pdf/Renderer-mupdf.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src-qt5/desktop-utils/lumina-pdf/Renderer-mupdf.cpp b/src-qt5/desktop-utils/lumina-pdf/Renderer-mupdf.cpp index 05854e1b..15379465 100644 --- a/src-qt5/desktop-utils/lumina-pdf/Renderer-mupdf.cpp +++ b/src-qt5/desktop-utils/lumina-pdf/Renderer-mupdf.cpp @@ -104,12 +104,12 @@ QImage Renderer::renderPage(int pagenum, QSize DPI){ //double scaleFactorH = dpi.height()/72.0; //fz_scale(&matrix, scaleFactorW, scaleFactorH); fz_scale(&matrix, 4.0, 4.0); //need to adjust this later according to DPI - fz_rotate(&matrix, 0.0); + fz_pre_rotate(&matrix, 0.0); fz_pixmap *pixmap = fz_new_pixmap_from_page_number(CTX, DOC, pagenum, &matrix, fz_device_rgb(CTX), 0); //unsigned char *samples = fz_pixmap_samples(CTX, pixmap); img = QImage(pixmap->samples, pixmap->w, pixmap->h, QImage::Format_RGB888); //make the raw image a bit larger than the end result + delete PAGE; } - if(PAGE!=0){ delete PAGE; } qDebug() << "Render Page:" << pagenum << img.size(); return img; } |