supported PDF-Versions/features in cdintf300.dll ...

The Amyuni PDF Converter is our Printer Driver that enables you to convert any documents to PDF format. If you have any questions about installing and using the Amyuni PDF Converter please post them here.
Post Reply
dCollins
Posts: 10
Joined: Fri Feb 20 2004

supported PDF-Versions/features in cdintf300.dll ...

Post by dCollins »

(cdintf300.dll version 3.0.0 Date 12th Apr 07)

hello,
we recently created new pdf Documents with Acrobat Distiller 9.0.0. These documents have a pdf-Version 1.5 and have tags included.

While concatenating previously created PDF-documents was successful, trying to concatenate the newly created pdf-documents fails (as there is no output file generated /output file is not updated)
The only difference I could find while the old ones didnt include tags the new ones do.

fyi - a code snippet on how we concatenate / create a single pdf document out of n pdf-documents

Code: Select all

   
   //Open main document
   (*DocOpenA)(&doc, _T(sztest), _T(""));
   
   //Loop through your files
   for (int i = 0; i < 16; i++){
      //Open document to append
      (*DocOpenA)(&docTemp, _T(szValue), _T(""));

      //append doccument
      (*DocAppend)(doc, docTemp);

      //close document
      (*DocClose)(docTemp);
   }

   (*DocSaveA)(doc, _T(sztest));
   
   //close main document
   (*DocClose)(doc);
After not being able to find any information about which PDF-Versions and features are supported in the stated common driver interface, I would like to ask a few questions regarding that here in the forum.

What in detail are the pdf-features/options the cdintf support and which are not supported at all?
Are you aware of any pdf-features/options interfering with the functions called in the code section?
Are only certain pdf-versions supported by the functions?

Is there a way to make the functions we use work or create an error output?

Thank you in advance for the support and answsering the questions,
DCo
Joan
Amyuni Team
Posts: 2799
Joined: Wed Sep 11 2002
Contact:

Re: supported PDF-Versions/features in cdintf300.dll ...

Post by Joan »

Hello,

Your version of CDIntf is a little bit old, older than version 9 of Distiller.

For post processing we do support all the features that are supported when generating a PDF using our PDF Converter.

Tagged PDFs are not supported at the moment.

We do not have a list of supported features, i will check if it is possible to compute one and will post it here.
Custom Brand the Amyuni PDF Printer Driver http://www.amyuni.com/en/developer/branding/index.html

Amyuni PDF Converter tested for true PDF performance. View results - http://www.amyuni.com/benchmark
Post Reply