0

I'm looking at a API which allows to create PDF run-time. And also it should allow to include dynamic data and tables to PDF document. I found a API called aspose.pdf API and it allows to fullfill my requirement. But it's very expensive and now i'm looking an open source PDF creator API or low cost API? (this is for C# development)

Please help

Thanks

mugzi
  • 809
  • 4
  • 16
  • 33

2 Answers2

0

Would it be possible to use Ghostscript? Just output the data as postscript and let the program output the pdf...

I found also this: Creating pdf files at runtime in c#. Maybe it helps.

Community
  • 1
  • 1
Lucian
  • 3,407
  • 2
  • 21
  • 18
0

How about rendering a HTML and using wkhtmltopdf to convert it to pdf?

Alternatively, you could look at iTextSharp, free for Open Source projects.

Srikanth Venugopalan
  • 9,011
  • 3
  • 36
  • 76