- 28 Apr, 2005 1 commit
-
-
Kristian Høgsberg authored
Patch from Martin Kretzschmar: * poppler/GlobalParams.cc: use UTF-8 as the default text encoding. Fixes Bug 2934.
-
- 27 Apr, 2005 2 commits
-
-
Jeff Muizelaar authored
* configure.ac: * poppler/FlateStream.cc: * poppler/FlateStream.h: * poppler/Makefile.am: * poppler/Stream.cc: * poppler/Stream.h: Add a reimplementation of FlateStream using zlib.
-
Kristian Høgsberg authored
* poppler/Catalog.cc (NameTree::lookup): Fix bsearch return value NULL check. Found by Albert Astals Cid.
-
- 26 Apr, 2005 1 commit
-
-
Jonathan Blandford Blandford authored
* glib/test-poppler-glib.c (main): add a quick dump-to-text test.
-
- 25 Apr, 2005 1 commit
-
-
Kristian Høgsberg authored
-
- 24 Apr, 2005 1 commit
-
-
Kristian Høgsberg authored
* qt/Makefile.am (libpoppler_qt_la_SOURCES): Add poppler-private.h to SOURCES.
-
- 23 Apr, 2005 2 commits
-
-
Kristian Høgsberg authored
* poppler/CairoFontEngine.cc: Use the right fileName for loading CID fonts (#3114).
-
Kristian Høgsberg authored
* configure.ac: Actually commit version number bump.
-
- 22 Apr, 2005 2 commits
-
-
Kristian Høgsberg authored
* poppler/CairoFontEngine.cc: declare matrix variable before the first goto. Fixes build with gcc 3.3.
-
Kristian Høgsberg authored
* poppler/CairoFontEngine.cc: Hack around semi-broken cairo-0.4.0 font API to fix the problem where some glyphs would show up at the wrong sizes. We now create an FT_Face for each size and font combination we encounter, since an FT_Face can't be shared between several cairo_font_t.
-
- 21 Apr, 2005 3 commits
-
-
Kristian Høgsberg authored
* poppler/Outline.cc: * poppler/Outline.h: Implement the documented behaviour for Outline::getItems() and OutlineItem::getKids() and make documentation more precise (Patch from Marco).
-
Kristian Høgsberg authored
* poppler/CairoFontEngine.cc (CairoFont::getFont): Cache cairo_font_t's for a given CairoFont. With this patch cairo will recognize glyphs coming from the same font as such and the glyph cache will actually work. * glib/poppler-document.cc (poppler_document_new_from_file): Add output device (cairo or splash) to PopplerDocument and initialize it in the constructor. * glib/poppler-page.cc (splash_render_to_pixbuf, cairo_render_to_pixbuf): Use output device from associated poppler document instead of creating a new one. * poppler-glib.pc.in (Requires): Add Requires: field. * poppler/Page.cc (loadThumb): Remove unecessary and buggy call to Stream::addFilters(), reported by Ryan Lortie (#3046).
-
Kristian Høgsberg authored
* glib/poppler-document.cc (poppler_document_new_from_file): Add output device (cairo or splash) to PopplerDocument and initialize it in the constructor. * glib/poppler-page.cc (splash_render_to_pixbuf, cairo_render_to_pixbuf): Use output device from associated poppler document instead of creating a new one. * poppler-glib.pc.in (Requires): Add Requires: field. * poppler/Page.cc (loadThumb): Remove unecessary and buggy call to Stream::addFilters(), reported by Ryan Lortie (#3046).
-
- 20 Apr, 2005 1 commit
-
-
Jeff Muizelaar authored
* qt/poppler-page.cc (Page::getText): * qt/poppler-qt.h: add a getText method for getting the text on a page * qt/test-poppler-qt.c (PDFDisplay::PDFDisplay): add the option to display the text on a page Patch from Albert Astals Cid.
-
- 19 Apr, 2005 4 commits
-
-
Jonathan Blandford Blandford authored
* glib/poppler-document.cc (poppler_document_get_property): Use %.2g instead.
-
Jonathan Blandford Blandford authored
* glib/poppler-document.cc (poppler_document_get_property): Use %g instead of %f to avoid versioning like PDF-1.50000
-
Kristian Høgsberg authored
* glib/poppler-action.cc (_poppler_action_new): Handle NULL links gracefully (fix from Jeff).
-
Kristian Høgsberg authored
* poppler/Catalog.cc: Fix from Marco to make sure we always initialize Catalog::pageLabelInfo.
-
- 16 Apr, 2005 1 commit
-
-
Jonathan Blandford Blandford authored
* glib/Makefile.am: Create poppler-enums.[ch] * glib/poppler.h: * glib/poppler-page.cc: * glib/poppler-page.h: * glib/poppler-action.h: Try to clean up the headers a bit * glib/poppler-document.cc: * glib/poppler-document.h: Add support for document data. Implemented as a lot of GObject properties. * glib/poppler-enums.c: * glib/poppler-enums.h: New autogenerated files. * glib/test-poppler-glib.c: Test the new document metadata. Seems to work nicely, other than the PDF string and View Prefs. * poppler/Catalog.cc: * poppler/Catalog.h: Extend to support PageLayout.
-
- 15 Apr, 2005 1 commit
-
-
Kristian Høgsberg authored
* glib/poppler-page.cc: * glib/poppler-page.h: * glib/poppler-private.h: * glib/poppler.h: Patch from Marco Pesenti Gritti to set page orientaton.
-
- 14 Apr, 2005 1 commit
-
-
Jeff Muizelaar authored
* poppler/CairoOutputDevImage.cc (getBitmap): remove unused SplashBitmap. Patch from Albert Astals Cid.
-
- 12 Apr, 2005 1 commit
-
-
Kristian Høgsberg authored
* configure.ac: Add fontconfig to PKG_CHECK_MODULES for the cairo backend too, since we shouldn't depend on cairo.pc to pull that in for us. * poppler/Makefile.am (INCLUDES): Add $(splash_includes) to INCLUDES to make sure the fontconfig include path is added when using the splash backend.
-
- 09 Apr, 2005 1 commit
-
-
Jeff Muizelaar authored
* poppler-qt.h: * poppler-document.cc (okToPrint, okToChange, okToCopy): Patch from Albert Astals Cid adding more metadata exports
-
- 08 Apr, 2005 3 commits
-
-
Kristian Høgsberg authored
* poppler-qt.pc.in (Libs): Add -lpoppler to Libs.
-
Jeff Muizelaar authored
* configure.ac: redo the qt tests from Albert Astals Cid
-
Jeff Muizelaar authored
* qt/poppler-document.cc: * qt/poppler-page.cc: * qt/poppler-qt.h: Patch from Albert Astals Cid adding consts and exporting some more metadata.
-
- 07 Apr, 2005 2 commits
-
-
Kristian Høgsberg authored
* glib/poppler-document.cc: * glib/poppler-document.h: * glib/poppler-page.cc: * glib/poppler-page.h: * glib/poppler-private.h: Print to PS support from Marco Pesenti Gritti.
-
Jonathan Blandford Blandford authored
* configure.ac: check for qt, not glib, when enabling the qt subdir
-
- 06 Apr, 2005 3 commits
-
-
Jeff Muizelaar authored
* .cvsignore, glib/.cvsignore, qt/.cvsignore: Add more things to .cvsignore. Patch from Martin Kretzschmar.
-
Jeff Muizelaar authored
* poppler-page.cc (Page::Page, Page::~Page): Construct and deconstruct the PageData object. Patch from Albert Astals Cid.
-
Jeff Muizelaar authored
* Makefile.am, configure.ac: Add configuration for qt wrapper. * poppler-qt.pc.in: * qt/Makefile.am: * qt/poppler-document.cc: * qt/poppler-page.cc: * qt/poppler-private.h: * qt/poppler-qt.h: * qt/test-poppler-qt.cpp: New files.
-
- 05 Apr, 2005 3 commits
-
-
Kristian Høgsberg authored
* NEWS: Attempt to sum up changes since 0.1.2. * configure.ac: Bump release to 0.2.0, add AC_DEFINEs for cairo and splash availability. * poppler/CairoFontEngine.cc: Disable hinting. * glib/poppler-page.cc (poppler_page_render_to_pixbuf): Choose either splash or cairo rendering, based on configure choice. (cairo_render_to_pixbuf): New function to render using the cairo backend. (splash_render_to_pixbuf): Split out the splash code to this function.
-
Kristian Høgsberg authored
* ChangeLog: Add this entry to test commit mailer script.
-
Kristian Høgsberg authored
* TODO: Add reminder about using PDF font descriptors with fontconfig.
-
- 04 Apr, 2005 2 commits
-
-
Kristian Høgsberg authored
* configure.ac: Add checks for mkstemp() and mkstemps(). * glib/poppler-page.cc (poppler_page_find_text): Reverse y-coordinates so we return PDF style coordinates. From Maro Pesenti Gritti <mpgritti@gmail.com>: * configure.ac, poppler/Makefile.am: Check for fontconfig when we're building the splash backend. * glib/poppler-page.cc (poppler_page_get_text): New function to select text on page.
-
Kristian Høgsberg authored
* glib/poppler-page.cc (poppler_page_find_text): Reverse list of matches so we get them in the right order.
-
- 03 Apr, 2005 1 commit
-
-
Jeff Muizelaar authored
* poppler/DCTStream.h: Wrap #include <jpeglib.h> in extern "C" Fixes build with unpatched libjpeg.
-
- 02 Apr, 2005 1 commit
-
-
Jeff Muizelaar authored
* poppler/Page.h: * poppler/Page.cc (Page::Page): Some initial infrastructure for supporting transitions.
-
- 01 Apr, 2005 1 commit
-
-
Kristian Høgsberg authored
* glib/poppler-page.cc (poppler_page_render_to_pixbuf): Clip output to destination pixbuf and fix RGB order.
-
- 31 Mar, 2005 1 commit
-
-
Kristian Høgsberg authored
* glib/poppler-page.cc (poppler_page_find_text): New function to seach a page for occurrences of a given text string. * glib/poppler-page.cc: Add g_return_if_fail() checks to a couple of functions.
-