C# - Placing a PDF inside another PDF - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T05:39:11Z http://stackoverflow.com/feeds/question/239685 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/239685/c-placing-a-pdf-inside-another-pdf 0 C# - Placing a PDF inside another PDF John_ 2008-10-27T12:15:09Z 2008-10-27T13:06:07Z <p>I have multiple logos of various companies in various formats that needs to be added to other PDFs. The format of these logos is not specified at the moment but it could be locked down to only certain formats if it causes issues.</p> <p>These other PDFs will be mostly posters and will be printed off by the user. </p> <p>Question: What is the best way for adding these logo's onto the PDF poster artwork on the fly to then be downloaded and printed by the user? Bareing in mind it needs to retain the original quality of the PDF when being printed.</p> <p>Thanks in advance</p> http://stackoverflow.com/questions/239685/c-placing-a-pdf-inside-another-pdf/239710#239710 1 Answer by gimel for C# - Placing a PDF inside another PDF gimel 2008-10-27T12:25:45Z 2008-10-27T12:25:45Z <p>See at my answer to a <a href="http://stackoverflow.com/questions/204860/best-server-side-net-pdf-editing-library">similar question</a>. In short, I've used <a href="http://itextsharp.sourceforge.net/" rel="nofollow">itextsharp</a> to add watermark(s) to an existing PDF.</p> http://stackoverflow.com/questions/239685/c-placing-a-pdf-inside-another-pdf/239784#239784 0 Answer by John_ for C# - Placing a PDF inside another PDF John_ 2008-10-27T12:56:59Z 2008-10-27T12:56:59Z <p>Thanks gimel, I've just had a quick look through and I've spotted an example of what I would need to do.</p> <p>Can you let me know if you can add a watermark anywhere within a pdf document? e.g. specify the location by pixel or something to that effect.</p> <p>Also I presume the quality of whatever comes out is dependant on what you upload? There is no degredation is what I am saying?</p> <p>Thanks</p> http://stackoverflow.com/questions/239685/c-placing-a-pdf-inside-another-pdf/239820#239820 1 Answer by yoyoyoyosef for C# - Placing a PDF inside another PDF yoyoyoyosef 2008-10-27T13:06:07Z 2008-10-27T13:06:07Z <p><a href="http://www.pdfsharp.com/PDFsharp/" rel="nofollow">PDFSharp</a> is a free library that can do this. <a href="http://www.pdfsharp.com/PDFsharp/index.php?option=com_content&amp;task=view&amp;id=40&amp;Itemid=51" rel="nofollow">These watermarking examples</a> should help you get started.</p>