Hi all,

I was able to generate a PDF file using QPrinter :
Qt Code:
  1. QPrinter printer;
  2. printer.setOutputFormat(QPrinter::PdfFormat);
  3. printer.setOutputFileName(pdfFile.fileName());
To copy to clipboard, switch view to plain text mode 

I know that Qt just can render a PDF file in order to visualize it and not to work with it. My probleme is that I want to insert some informations in the given pdf file to simplify its indexation on a Database.
So I'm wondering if there's a library that can manipulate a pdf metadata.

Thanks in advance