tags:

views:

65

answers:

1

I have several GDI+ functions/programs that are capable of producing vector graphics. Is there an API that uses the GDI+ naming conversion that creates PDFs. So instead of creating a bitmap/canvas (i forget which one) and calling DrawRectangle, I could create a PDF_Canvas or something and call the PDF DrawRectangle?

A: 

use

using iTextSharp;

using iTextSharp.text;
using iTextSharp.text.pdf;
Bala