Is it possible to change an existing property of a PDF document with iText?
I tried this
Map<String, String> moreInfo = new HashMap<String, String>();
moreInfo.put(Meta.PRODUCER, "XXX");
moreInfo.put(Meta.AUTHOR, "YYY");
try {
stamp1.setMoreInfo(moreInfo);
}
catch (Throwable t) {
Log.d(this.getClass().getName(), t.getMessage());
}
I don't get any exception, but also nothing changes.