Summary: How can I reduce the amount of time it takes to convert tifs to pdfs using itextsharp?
itextsharp
Background: I\'m convertin
Modify GetInstance method argument to
GetInstance(bm, ImageFormat.Tiff)
this might increase the performance
iTextSharp.text.Image img = iTextSharp.text.Image.GetInstance(bm, ImageFormat.Tiff);