Set Metadata in iTextSharp
I am developing an application and i use the iTextSharp library. I am also reading the iText in action from Manning so i can get references. In Chapter 12 it has the following code to change the metadata in Java. PdfReader reader = new PdfReader(src); PdfStamper stamper = new PdfStamper(reader, new FileOutputStream(dest)); HashMap<String, String> info = reader.getInfo(); info.put("Title", "Hello World stamped"); info.put("Subject", "Hello World with changed metadata"); info.put("Keywords", "iText in Action, PdfStamper"); info.put("Creator", "Silly standalone example"); info.put("Author", "Also