~ubuntu-branches/ubuntu/quantal/cups-filters/quantal-proposed

« back to all changes in this revision

Viewing changes to filter/pdftopdf/qpdf_cm.h

  • Committer: Package Import Robot
  • Author(s): Till Kamppeter
  • Date: 2012-08-20 14:53:42 UTC
  • mfrom: (2.1.2 experimental)
  • Revision ID: package-import@ubuntu.com-20120820145342-bddzpwqv0klmt84d
Tags: 1.0.22-1
* New upstream release
   - pdftopdf filter replaced by new QPDF-based filter from Tobias
     Hoffmann's Google Summer of Code project. The former Poppler-based
     pdftopdf duplicated a lot of Poppler's code. The old filter is
     still in the package as pdftopdf.old with source code in
     filter/pdftopdf.old. It will be removed in a later release.
   - bannertopdf: Page duplication routine fixed.
   - bannertopdf: Fixed invalid output of a direct stream object.
   - Added most recent contributors to AUTHORS and COPYING files.
* debian/control: Added build dependency on libqpdf-dev.
* debian/copyright: Updated for the addition of the new pdftopdf filter.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef QPDF_CM_H_
 
2
#define QPDF_CM_H_
 
3
 
 
4
#include <qpdf/QPDF.hh>
 
5
 
 
6
bool hasOutputIntent(QPDF &pdf);
 
7
void addOutputIntent(QPDF &pdf,const char *filename);
 
8
 
 
9
void addDefaultRGB(QPDF &pdf,QPDFObjectHandle srcicc);
 
10
QPDFObjectHandle setDefaultICC(QPDF &pdf,const char *filename);
 
11
 
 
12
#endif