Hi,

Can I get your help on couple of issues I encountered  while saving PDF using 
iTextSharp v5.4.5 C# library.

We are trying to edit pdf document metadata such as Author, Title, Subject, 
Keywords,  PDF version  and while saving PDF document we notice the following  
issues ,


1.       The value of metadata item "Subject"  is getting appended to the value 
of "Keywords" as shown in attached screenshot (keywords.png).
 I am using the following code to edit and update the metadata.

Dictionary<String, String> info = reader.Info;
                    try
                    {
                        info["Author"] = Author;
                        info["Title"] = Title;
                        info["Subject"] = "My subject";
                        info["Keywords"] = "My Keywords";
                        stamper.MoreInfo = info;

                    }
                    catch
                    {

                        reader.Close();
                        return false;
                    }


2.        Do you support creating Linearized PDFs (Apply fast web view)? If you 
YES can you give us the method name how to apply it. I have seen your 
documentation saying iTextsharp doesn't support creating Linearized PDFs. I 
would like to know is this supported in latest version of iTextSharp.

We really appreciate your help in resolving the above issues.


Regards

Chenna Basappa C

------------------------------------------------------------------------------
CenturyLink Cloud: The Leader in Enterprise Cloud Services.
Learn Why More Businesses Are Choosing CenturyLink Cloud For
Critical Workloads, Development Environments & Everything In Between.
Get a Quote or Start a Free Trial Today. 
http://pubads.g.doubleclick.net/gampad/clk?id=119420431&iu=/4140/ostg.clktrk
_______________________________________________
iText-questions mailing list
iText-questions@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/itext-questions

iText(R) is a registered trademark of 1T3XT BVBA.
Many questions posted to this list can (and will) be answered with a reference 
to the iText book: http://www.itextpdf.com/book/
Please check the keywords list before you ask for examples: 
http://itextpdf.com/themes/keywords.php

Reply via email to