|
|
how to change pdf metadata on multiple files at once?
Hello,
suppose you have a long list of pdf files and you want to add the same
metadata
(say, Author, subject) to all of them. Is there an utility somewhere
that does it?
Thanks,
Bob
|
|
0
|
|
|
|
Reply
|
catdogbeloved (59)
|
10/31/2005 8:29:36 AM |
|
Bob wrote:
> Hello,
>
> suppose you have a long list of pdf files and you want to add the same
> metadata
> (say, Author, subject) to all of them. Is there an utility somewhere
> that does it?
iText (Java) or iTextSharp (.NET) can do this.
You can add regular PDF metadata, XMP metadata or both.
This is some sample code that adds an author and a title,
in the form of both regular and XMP metadata:
PdfReader reader = new PdfReader("HelloWorldNoMetadata.pdf");
PdfStamper stamper = new PdfStamper(reader,
new FileOutputStream("HelloWorldStampedMetadata.pdf"));
HashMap info = reader.getInfo();
info.put("Author", "Bruno Lowagie");
info.put("Title", "Hello World stamped");
stamper.setMoreInfo(info);
ByteArrayOutputStream baos = new ByteArrayOutputStream();
XmpWriter xmp = new XmpWriter(baos, info);
xmp.close();
stamper.setXmpMetadata(baos.toByteArray());
stamper.close();
br,
Bruno
|
|
0
|
|
|
|
Reply
|
Bruno
|
10/31/2005 9:07:59 AM
|
|
Bob wrote:
> Hello,
>
> suppose you have a long list of pdf files and you want to add the
> same metadata (say, Author, subject) to all of them. Is there an
> utility somewhere that does it?
pdftk
http://www.accesspdf.com/pdftk/
and a 'for' loop in your shell. (recommended!)
Or
MbtPdfAsm
http://thierry.schmit.free.fr/dev/mbtPdfAsm/enMbtPdfAsm2.html
Or
BeCyPDFMetaEdit (there is also a batch mode):
http://www.becyhome.de/becypdfmetaedit/description_ger.htm
Ralf
|
|
0
|
|
|
|
Reply
|
Ralf
|
10/31/2005 9:25:38 AM
|
|
|
2 Replies
909 Views
(page loaded in 0.046 seconds)
Similiar Articles: how to change pdf metadata on multiple files at once? - comp.text ...Hello, suppose you have a long list of pdf files and you want to add the same metadata (say, Author, subject) to all of them. Is there an utility so... Does anyone have sample java code for extracting pdf metadata ...how to change pdf metadata on multiple files at once? - comp.text ... iText (Java) or iTextSharp (.NET) can do this. You can add regular PDF metadata, XMP metadata or both. Bug? Gettting ghostscript to programmatically convert ps to pdf on ...how to change pdf metadata on multiple files at once? - comp.text ... Bug? Gettting ghostscript to programmatically convert ps to pdf on ... I need to convert SGML files ... How to attach a file to a pdf document - comp.text.pdfhow to change pdf metadata on multiple files at once? - comp.text ... How to attach a file to a pdf document - comp.text.pdf how to change pdf metadata on multiple files ... How to edit PDF (as text) - comp.emacshow to change pdf metadata on multiple files at once? - comp.text ... Hello, suppose you have a long list of pdf files and you want to add the same metadata (say, Author ... Batch metadata editing - comp.text.pdfhow to change pdf metadata on multiple files at once? - comp.text ... Batch metadata editing - comp.text.pdf Batch metadata editing - comp.text.pdf Edit Metadata of PDF ... concatenating multiple text files into one text file - comp.soft ...Scaning a multi-page document into one PDf file? - comp.text.pdf ... how to change pdf metadata on multiple files at once? - comp.text ... Scaning a multi-page document ... how to burn multiple CDs simultaneously? - comp.publish.cdrom ...how to change pdf metadata on multiple files at once? - comp.text ... how to burn multiple CDs simultaneously? - comp.publish.cdrom ... PDF Export ... to change pdf ... how to save or print a filemaker Pro 6.0 job as .pdf - comp ...how to change the background color and print the PDF file? - comp ... how to change pdf metadata on multiple files at once? - comp.text ... how to save or print a ... PDF files takes forever to complete - comp.text.pdfOS: Windows XP professional MS Office 2000 Acrobat 5.0 Problem: when creating a pdf in MS Word 2000 (tried Distiller and the pdf maker macro), no pdf file is created ... how to change pdf metadata on multiple files at once? - comp.text ...Hello, suppose you have a long list of pdf files and you want to add the same metadata (say, Author, subject) to all of them. Is there an utility so... Re: how to change pdf metadata on multiple files at once?Bob wrote: Hello, suppose you have a long list of pdf files and you want to add the same metadata (say, Author, subject) to all of them. Is there an utility somewhere ... 7/24/2012 3:07:55 AM
|
|
|
|
|
|
|
|
|