Home
last modified time | relevance | path

Searched refs:splashOutputDev (Results 1 – 6 of 6) sorted by relevance

/dports/devel/emscripten/emscripten-2.0.3/tests/third_party/poppler/cpp/
H A Dpoppler-page-renderer.cpp175 SplashOutputDev splashOutputDev(splashModeXBGR8, 4, gFalse, bgColor, gTrue, text_AA); in render_page() local
176 splashOutputDev.setVectorAntialias(d->hints & antialiasing ? gTrue : gFalse); in render_page()
177 splashOutputDev.setFreeTypeHinting(d->hints & text_hinting ? gTrue : gFalse); in render_page()
178 splashOutputDev.startDoc(pdfdoc->getXRef()); in render_page()
179 pdfdoc->displayPageSlice(&splashOutputDev, pp->index + 1, in render_page()
184 SplashBitmap *bitmap = splashOutputDev.getBitmap(); in render_page()
/dports/graphics/poppler/poppler-21.12.0/cpp/
H A Dpoppler-page-renderer.cpp275 SplashOutputDev splashOutputDev(colorMode, 4, false, bgColor, true, lineMode); in render_page() local
276 splashOutputDev.setFontAntialias(d->hints & text_antialiasing ? true : false); in render_page()
277 splashOutputDev.setVectorAntialias(d->hints & antialiasing ? true : false); in render_page()
278 splashOutputDev.setFreeTypeHinting(d->hints & text_hinting ? true : false, false); in render_page()
279 splashOutputDev.startDoc(pdfdoc); in render_page()
280 …pdfdoc->displayPageSlice(&splashOutputDev, pp->index + 1, xres, yres, int(rotate) * 90, false, tru… in render_page()
282 SplashBitmap *bitmap = splashOutputDev.getBitmap(); in render_page()
/dports/graphics/poppler-qt5/poppler-21.12.0/cpp/
H A Dpoppler-page-renderer.cpp275 SplashOutputDev splashOutputDev(colorMode, 4, false, bgColor, true, lineMode); in render_page() local
276 splashOutputDev.setFontAntialias(d->hints & text_antialiasing ? true : false); in render_page()
277 splashOutputDev.setVectorAntialias(d->hints & antialiasing ? true : false); in render_page()
278 splashOutputDev.setFreeTypeHinting(d->hints & text_hinting ? true : false, false); in render_page()
279 splashOutputDev.startDoc(pdfdoc); in render_page()
280 …pdfdoc->displayPageSlice(&splashOutputDev, pp->index + 1, xres, yres, int(rotate) * 90, false, tru… in render_page()
282 SplashBitmap *bitmap = splashOutputDev.getBitmap(); in render_page()
/dports/graphics/poppler-glib/poppler-21.12.0/cpp/
H A Dpoppler-page-renderer.cpp275 SplashOutputDev splashOutputDev(colorMode, 4, false, bgColor, true, lineMode); in render_page() local
276 splashOutputDev.setFontAntialias(d->hints & text_antialiasing ? true : false); in render_page()
277 splashOutputDev.setVectorAntialias(d->hints & antialiasing ? true : false); in render_page()
278 splashOutputDev.setFreeTypeHinting(d->hints & text_hinting ? true : false, false); in render_page()
279 splashOutputDev.startDoc(pdfdoc); in render_page()
280 …pdfdoc->displayPageSlice(&splashOutputDev, pp->index + 1, xres, yres, int(rotate) * 90, false, tru… in render_page()
282 SplashBitmap *bitmap = splashOutputDev.getBitmap(); in render_page()
/dports/graphics/poppler-utils/poppler-21.12.0/cpp/
H A Dpoppler-page-renderer.cpp275 SplashOutputDev splashOutputDev(colorMode, 4, false, bgColor, true, lineMode); in render_page() local
276 splashOutputDev.setFontAntialias(d->hints & text_antialiasing ? true : false); in render_page()
277 splashOutputDev.setVectorAntialias(d->hints & antialiasing ? true : false); in render_page()
278 splashOutputDev.setFreeTypeHinting(d->hints & text_hinting ? true : false, false); in render_page()
279 splashOutputDev.startDoc(pdfdoc); in render_page()
280 …pdfdoc->displayPageSlice(&splashOutputDev, pp->index + 1, xres, yres, int(rotate) * 90, false, tru… in render_page()
282 SplashBitmap *bitmap = splashOutputDev.getBitmap(); in render_page()
/dports/devel/emscripten/emscripten-2.0.3/tests/third_party/poppler/qt4/src/
H A Dpoppler-private.h112 …SplashOutputDev * splashOutputDev = new SplashOutputDev(splashModeXBGR8, 4, gFalse, bgColor, gTrue… in getOutputDev() local
113 splashOutputDev->setVectorAntialias(m_hints & Document::Antialiasing ? gTrue : gFalse); in getOutputDev()
114 splashOutputDev->setFreeTypeHinting(m_hints & Document::TextHinting ? gTrue : gFalse); in getOutputDev()
115 splashOutputDev->startDoc(doc->getXRef()); in getOutputDev()
116 m_outputDev = splashOutputDev; in getOutputDev()