<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: ABCpdf - nice component but not free</title>
	<atom:link href="http://devblog.antongochev.net/2008/06/23/abcpdf-nice-component-but-not-free/feed/" rel="self" type="application/rss+xml" />
	<link>http://devblog.antongochev.net/2008/06/23/abcpdf-nice-component-but-not-free/</link>
	<description>Programming is an art...</description>
	<pubDate>Thu, 09 Feb 2012 06:28:05 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: PdfSharp - a free component for editing pdf in .Net : Anton Gochev&#8217;s Weblog</title>
		<link>http://devblog.antongochev.net/2008/06/23/abcpdf-nice-component-but-not-free/#comment-27</link>
		<dc:creator>PdfSharp - a free component for editing pdf in .Net : Anton Gochev&#8217;s Weblog</dc:creator>
		<pubDate>Thu, 10 Jul 2008 15:52:49 +0000</pubDate>
		<guid isPermaLink="false">http://ganton.wordpress.com/?p=10#comment-27</guid>
		<description>[...] i wrote in my previous post ABCpdf is a nice component but I need something for free. I searched for some  free component and [...]</description>
		<content:encoded><![CDATA[<p>[...] i wrote in my previous post ABCpdf is a nice component but I need something for free. I searched for some  free component and [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ganton</title>
		<link>http://devblog.antongochev.net/2008/06/23/abcpdf-nice-component-but-not-free/#comment-8</link>
		<dc:creator>ganton</dc:creator>
		<pubDate>Tue, 24 Jun 2008 11:14:07 +0000</pubDate>
		<guid isPermaLink="false">http://ganton.wordpress.com/?p=10#comment-8</guid>
		<description>Hi Ranga,

Thanks for the information!

I've also reviewed DynamicPDF for .Net component but
I needed a pdf component for a very small project and that is why I've looked for a free one (the customer will not pay for it) or with option to get it for free. Unfortunately, I've not found any information how to get a free license for DynamicPDF for .Net component.

Regards,
ganton</description>
		<content:encoded><![CDATA[<p>Hi Ranga,</p>
<p>Thanks for the information!</p>
<p>I&#8217;ve also reviewed DynamicPDF for .Net component but<br />
I needed a pdf component for a very small project and that is why I&#8217;ve looked for a free one (the customer will not pay for it) or with option to get it for free. Unfortunately, I&#8217;ve not found any information how to get a free license for DynamicPDF for .Net component.</p>
<p>Regards,<br />
ganton</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ranga</title>
		<link>http://devblog.antongochev.net/2008/06/23/abcpdf-nice-component-but-not-free/#comment-7</link>
		<dc:creator>Ranga</dc:creator>
		<pubDate>Tue, 24 Jun 2008 10:54:19 +0000</pubDate>
		<guid isPermaLink="false">http://ganton.wordpress.com/?p=10#comment-7</guid>
		<description>Hello,

You can also use the DynamicPDF for .NET product from ceTe Software Pvt Ltd. Our products will allow you to create PDF documents programmatically from scratch, merge existing PDF documents, add contents to existing PDF files, stamping PDFs, appending existing PDF documents, form filling, rotating and scaling PDFs, etc.

You can merge the existing PDF documents and read or fill the form fields without any problem. You can add any page elements to an existing PDF document.

Following is some sample code for filling the form fields of an existing PDF document.

        //Merge the existing PDF document
        MergeDocument document = new MergeDocument(@"C:\Temp\DocumentA.pdf");

        //loop through the fields to fill
        foreach (FormField field in document.Form.Fields)
        {
            //Fill the field using the field name.
            document.Form.Fields[field.FullName].Value = "ceTe Software";
        }

        //open the PDF on the browser
        document.DrawToWeb();

You can fill the fields using the index or the name of the form field.

You can add any page element ( labels, textareas, tables, formattedtext etc ) to a newly creating PDF or to an existing PDF without any problem.

        //Create a new PDF document object
        Document document = new Document();

        //Create a new Page object
        Page page = new Page();

        //Create a rectangle element
        Rectangle rectangle = new Rectangle(10, 10, 100, 100);
        rectangle.FillColor = RgbColor.Gray;

        //Create a label element
        Label label = new Label("ceTe Software", 10, 10, 100, 100);

        //Add rectangle and label to the page
        page.Elements.Add(rectangle);
        page.Elements.Add(label);

        //Add page to the document
        document.Pages.Add(page);

        //Save the PDF to disk
        document.Draw(@"C:\Temp\Doc.pdf");

You can save the PDF to disk or open in the web browser, you can also output it to a byte array or a stream.

You can refer to our website at http://www.cete.com.

Thanks,

Ranga.
ceTe Software Support Team.</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>You can also use the DynamicPDF for .NET product from ceTe Software Pvt Ltd. Our products will allow you to create PDF documents programmatically from scratch, merge existing PDF documents, add contents to existing PDF files, stamping PDFs, appending existing PDF documents, form filling, rotating and scaling PDFs, etc.</p>
<p>You can merge the existing PDF documents and read or fill the form fields without any problem. You can add any page elements to an existing PDF document.</p>
<p>Following is some sample code for filling the form fields of an existing PDF document.</p>
<p>        //Merge the existing PDF document<br />
        MergeDocument document = new MergeDocument(@&#8221;C:\Temp\DocumentA.pdf&#8221;);</p>
<p>        //loop through the fields to fill<br />
        foreach (FormField field in document.Form.Fields)<br />
        {<br />
            //Fill the field using the field name.<br />
            document.Form.Fields[field.FullName].Value = &#8220;ceTe Software&#8221;;<br />
        }</p>
<p>        //open the PDF on the browser<br />
        document.DrawToWeb();</p>
<p>You can fill the fields using the index or the name of the form field.</p>
<p>You can add any page element ( labels, textareas, tables, formattedtext etc ) to a newly creating PDF or to an existing PDF without any problem.</p>
<p>        //Create a new PDF document object<br />
        Document document = new Document();</p>
<p>        //Create a new Page object<br />
        Page page = new Page();</p>
<p>        //Create a rectangle element<br />
        Rectangle rectangle = new Rectangle(10, 10, 100, 100);<br />
        rectangle.FillColor = RgbColor.Gray;</p>
<p>        //Create a label element<br />
        Label label = new Label(&#8221;ceTe Software&#8221;, 10, 10, 100, 100);</p>
<p>        //Add rectangle and label to the page<br />
        page.Elements.Add(rectangle);<br />
        page.Elements.Add(label);</p>
<p>        //Add page to the document<br />
        document.Pages.Add(page);</p>
<p>        //Save the PDF to disk<br />
        document.Draw(@&#8221;C:\Temp\Doc.pdf&#8221;);</p>
<p>You can save the PDF to disk or open in the web browser, you can also output it to a byte array or a stream.</p>
<p>You can refer to our website at <a href="http://www.cete.com" rel="nofollow" onclick="javascript:urchinTracker ('/outbound/comment/www.cete.com');">http://www.cete.com</a>.</p>
<p>Thanks,</p>
<p>Ranga.<br />
ceTe Software Support Team.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

