C# - Placing a PDF inside another PDF - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T05:39:11Zhttp://stackoverflow.com/feeds/question/239685http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/239685/c-placing-a-pdf-inside-another-pdf0C# - Placing a PDF inside another PDFJohn_2008-10-27T12:15:09Z2008-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#2397101Answer by gimel for C# - Placing a PDF inside another PDFgimel2008-10-27T12:25:45Z2008-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#2397840Answer by John_ for C# - Placing a PDF inside another PDFJohn_2008-10-27T12:56:59Z2008-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#2398201Answer by yoyoyoyosef for C# - Placing a PDF inside another PDFyoyoyoyosef2008-10-27T13:06:07Z2008-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&task=view&id=40&Itemid=51" rel="nofollow">These watermarking examples</a> should help you get started.</p>