Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tiff/tiff2ps.c
Commit message (Collapse)AuthorAgeFilesLines
* remove TRUE and FALSE definitions, glib provides them (PlaceImage,Matthew S. Wilson2005-07-041-16/+25
| | | | | | | | | 2005-07-04 Matthew S. Wilson <msw@rpath.com> * tiff/tiff2ps.c: remove TRUE and FALSE definitions, glib provides them (PlaceImage, tiff2ps_process_page): use g_ascii_dtostr to convert floats to strings in a locale-safe way.
* use the new tiff2ps interfacesMatthew S. Wilson2005-07-041-560/+603
| | | | | | | | | | | | | | | 2005-07-04 Matthew S. Wilson <msw@rpath.com> * tiff/tiff-document.c (tiff_document_ps_export_begin) (tiff_document_ps_export_do_page, tiff_document_ps_export_end): use the new tiff2ps interfaces * tiff/tiff2ps.h (tiff2ps_context_new, tiff2ps_process_page) (tiff2ps_context_finalize): implement new interfaces for tiff2ps * tiff/tiff2ps.c: refactor tiff2ps code to use a context structure instead of global variables. Remove use of static variables in functions.
* disable generating encapsulated postscript filesMatthew S. Wilson2005-07-041-1/+1
| | | | | | | 2005-07-04 Matthew S. Wilson <msw@rpath.com> * tiff/tiff2ps.c (generateEPSF): disable generating encapsulated postscript files
* implement the ps exporter interface for tiff documentsMatthew S. Wilson2005-07-031-0/+1816
2005-07-03 Matthew S. Wilson <msw@rpath.com> * tiff/tiff-document.c (tiff_document_ps_export_begin) (tiff_document_ps_export_do_page, tiff_document_ps_export_end) (tiff_document_document_ps_exporter_iface_init): implement the ps exporter interface for tiff documents * tiff/tiff2ps.c: added a modified version of tiff2ps.c from libtiff to implement TIFF postscript export * tiff/tiff2ps.h: added a header file for external tiff2ps functions. * tiff/Makefile.am (libtiffdocument_la_SOURCES): add tiff2ps.c and tiff2ps.h