summarylogtreecommitdiffstats
path: root/0001-Cairo-backend-added-to-Qt5-wrapper.patch
blob: 97279f442ebf08e2f98511e6b1ca8cc09ef57269 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
From 22e910672666ec2cbcceccc425c16369835e380d Mon Sep 17 00:00:00 2001
From: Paul Gideon Dann <pdgiddie@gmail.com>
Date: Wed, 4 Apr 2018 16:36:56 +0100
Subject: [PATCH 1/2] Cairo backend added to Qt5 wrapper

---
 qt5/src/CMakeLists.txt      | 15 ++++++++
 qt5/src/poppler-document.cc |  3 ++
 qt5/src/poppler-page.cc     | 70 +++++++++++++++++++++++++++++++++++++
 qt5/src/poppler-qt5.h       |  3 +-
 qt5/tests/CMakeLists.txt    |  5 +++
 5 files changed, 95 insertions(+), 1 deletion(-)

diff --git a/qt5/src/CMakeLists.txt b/qt5/src/CMakeLists.txt
index 5b15cfb2..795784df 100644
--- a/qt5/src/CMakeLists.txt
+++ b/qt5/src/CMakeLists.txt
@@ -5,6 +5,11 @@ include_directories(
   ${CMAKE_CURRENT_BINARY_DIR}
 )
 
+if (HAVE_CAIRO)
+  include_directories(${CAIRO_INCLUDE_DIRS})
+  add_definitions(${CAIRO_CFLAGS})
+endif (HAVE_CAIRO)
+
 configure_file(poppler-version.h.in ${CMAKE_CURRENT_BINARY_DIR}/poppler-version.h @ONLY)
 
 set(poppler_qt5_SRCS
@@ -32,6 +37,13 @@ set(poppler_qt5_SRCS
   QPainterOutputDev.cc
   poppler-version.cpp
 )
+if (HAVE_CAIRO)
+  set(poppler_qt5_SRCS ${poppler_qt5_SRCS}
+    ${CMAKE_SOURCE_DIR}/poppler/CairoOutputDev.cc
+    ${CMAKE_SOURCE_DIR}/poppler/CairoRescaleBox.cc
+    ${CMAKE_SOURCE_DIR}/poppler/CairoFontEngine.cc
+  )
+endif(HAVE_CAIRO)
 add_library(poppler-qt5 ${poppler_qt5_SRCS})
 generate_export_header(poppler-qt5 BASE_NAME poppler-qt5 EXPORT_FILE_NAME "${CMAKE_CURRENT_BINARY_DIR}/poppler-export.h")
 set_target_properties(poppler-qt5 PROPERTIES VERSION 1.37.0 SOVERSION 1)
@@ -40,6 +52,9 @@ if(MINGW AND BUILD_SHARED_LIBS)
     set_target_properties(poppler-qt5 PROPERTIES SUFFIX "-${POPPLER_QT5_SOVERSION}${CMAKE_SHARED_LIBRARY_SUFFIX}")
 endif()
 target_link_libraries(poppler-qt5 poppler Qt5::Core Qt5::Gui Qt5::Xml Freetype::Freetype)
+if (HAVE_CAIRO)
+  target_link_libraries(poppler-qt5 ${CAIRO_LIBRARIES})
+endif (HAVE_CAIRO)
 if (ENABLE_NSS3)
     target_include_directories(poppler-qt5 SYSTEM PRIVATE ${NSS3_INCLUDE_DIRS})
 endif()
diff --git a/qt5/src/poppler-document.cc b/qt5/src/poppler-document.cc
index ffa93fde..439c54e1 100644
--- a/qt5/src/poppler-document.cc
+++ b/qt5/src/poppler-document.cc
@@ -712,6 +712,9 @@ QSet<Document::RenderBackend> Document::availableRenderBackends()
     ret << Document::SplashBackend;
     ret << Document::QPainterBackend;
     ret << Document::ArthurBackend; // For backward compatibility
+#if defined(HAVE_CAIRO)
+    ret << Document::CairoBackend;
+#endif
     return ret;
 }
 
diff --git a/qt5/src/poppler-page.cc b/qt5/src/poppler-page.cc
index 7c206f57..721f5ed8 100644
--- a/qt5/src/poppler-page.cc
+++ b/qt5/src/poppler-page.cc
@@ -58,6 +58,7 @@
 #include <config.h>
 #include <cfloat>
 #include <poppler-config.h>
+#include <math.h>
 #include <PDFDoc.h>
 #include <Catalog.h>
 #include <Form.h>
@@ -69,6 +70,9 @@
 #include <Rendition.h>
 #include <SplashOutputDev.h>
 #include <splash/SplashBitmap.h>
+#if defined(HAVE_CAIRO)
+#    include <CairoOutputDev.h>
+#endif
 
 #include "poppler-private.h"
 #include "poppler-page-transition-private.h"
@@ -629,6 +633,69 @@ QImage Page::renderToImage(double xres, double yres, int xPos, int yPos, int w,
         img = tmpimg;
         break;
     }
+    case Poppler::Document::CairoBackend: {
+#if defined(HAVE_CAIRO)
+        CairoOutputDev *output_dev = new CairoOutputDev();
+        output_dev->startDoc(m_page->parentDoc->doc);
+        int buffer_width, buffer_height, rotate;
+        cairo_surface_t *surface;
+        cairo_t *cairo;
+
+        // If w or h are -1, that indicates the whole page, so we need to
+        // calculate how many pixels that corresponds to.  Otherwise, we can use w
+        // or h directly for our buffer size.
+        const QSize pageSize = this->pageSize();
+        if (w == -1) {
+            const double xscale = xres / 72.0;
+            const double width = pageSize.width();;
+            buffer_width = (int) ceil(width * xscale);
+        } else {
+            buffer_width = w;
+        }
+        if (h == -1) {
+            const double yscale = yres / 72.0;
+            const double height = pageSize.height();
+            buffer_height = (int) ceil(height * yscale);
+        } else {
+            buffer_height = h;
+        }
+
+        rotate = rotation + m_page->page->getRotate();
+
+        // FIXME: Okular never provides a rotation value, so I don't have any way
+        // of testing this right now.  The result is that subpixels are ordered
+        // incorrectly when the page is rotated.
+
+        //if (rotate == 90 || rotate == 270) {
+        //    const double temp = height;
+        //    height = width;
+        //    width = temp;
+        //}
+
+        img = QImage(buffer_width, buffer_height, QImage::Format_ARGB32);
+        img.fill(Qt::white);  // Never transparent
+
+        surface = cairo_image_surface_create_for_data(
+                      img.bits(),
+                      CAIRO_FORMAT_ARGB32,
+                      buffer_width, buffer_height,
+                      img.bytesPerLine());
+
+        cairo = cairo_create(surface);
+        output_dev->setCairo(cairo);
+
+        m_page->parentDoc->doc->displayPageSlice(
+            output_dev, m_page->index + 1, xres, yres, rotation, false, true,
+            false, xPos, yPos, w, h);
+
+        // Clean up
+        output_dev->setCairo(nullptr);
+        cairo_destroy(cairo);
+        cairo_surface_destroy(surface);
+        delete output_dev;
+#endif
+        break;
+    }
     }
 
     if (shouldAbortRenderCallback && shouldAbortRenderCallback(payload)) {
@@ -654,6 +721,9 @@ bool Page::renderToPainter(QPainter *painter, double xres, double yres, int x, i
 
         return renderToQPainter(&qpainter_output, painter, m_page, xres, yres, x, y, w, h, rotate, flags);
     }
+    case Poppler::Document::CairoBackend: {
+      return false;
+    }
     }
     return false;
 }
diff --git a/qt5/src/poppler-qt5.h b/qt5/src/poppler-qt5.h
index de8adad9..d58581fa 100644
--- a/qt5/src/poppler-qt5.h
+++ b/qt5/src/poppler-qt5.h
@@ -1184,7 +1184,8 @@ public:
     {
         SplashBackend, ///< Splash backend
         ArthurBackend, ///< \deprecated The old name of the QPainter backend
-        QPainterBackend = ArthurBackend ///< @since 20.11
+        QPainterBackend = ArthurBackend, ///< @since 20.11
+        CairoBackend   ///< Cairo backend
     };
 
     /**
diff --git a/qt5/tests/CMakeLists.txt b/qt5/tests/CMakeLists.txt
index e610413a..26c45088 100644
--- a/qt5/tests/CMakeLists.txt
+++ b/qt5/tests/CMakeLists.txt
@@ -7,6 +7,11 @@ include_directories(
   ${CMAKE_CURRENT_BINARY_DIR}/../src
 )
 
+if (HAVE_CAIRO)
+  include_directories(${CAIRO_INCLUDE_DIRS})
+  add_definitions(${CAIRO_CFLAGS})
+endif (HAVE_CAIRO)
+
 macro(QT5_ADD_SIMPLETEST exe source)
   string(REPLACE "-" "" test_name ${exe})
   set(${test_name}_SOURCES
-- 
2.47.0