vote up 1 vote down star

I have around 10 System.Drawing.Bitmap elements, which I want to dump to PDF. When combining them to a single bitmap, and then writing this to PNG, this takes me about 150 ms.

Now I want to create a PDF out of my bitmaps (4 pages), but with PDFSharp this takes >2.5 seconds. Is there any library that is (way) faster at doing this?

NB. I draw the images on the surface in PDFSharp like:

 XGraphics gfx = XGraphics.FromPdfPage(page1);
 gfx.DrawImage(XImage.FromGdiPlusImage(/*bitmap*/));

edit Don't care about paid/free

flag

2 Answers

vote up 1 vote down check

Try ITextSharp. Very easy to use and learn.

link|flag
+1 and there's a great book on it too which you should get (though there are plenty net based resources too) – Ruben Bartelink Oct 14 at 8:07
I don't care about ease, just about performance. – Jan Jongboom Oct 14 at 8:20
I'm using it for PDF creation in two cases: HTML to PDF and image placing in PDF. So far... rocket fast, i'm totally satisfied with the performance. Generated PDF are > 5 pages. – ZokiManas Oct 14 at 9:32
Additional info: itextsharp.sourceforge.net/tutorial/ch06.html/… – ZokiManas Oct 14 at 9:33
vote up 0 vote down

I haven't tried it (performance-wise or other..), but aspose has a pdf component which comes with a trial-version.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.