When exporting a tif image to pdf using:
DE.ExportPdf(DI, DI.AllPages, PdfExportOptions.None, path);
the resulting file size is typically around 300% larger than when just exporting the tif:
DE.ExportPages(DI, DI.AllPages, path);
Is it normal to see this kind of size increase when exporting to pdf?
fyi: I'm using the sdk in a web service that allows our clients to download images. It is important for the service to minimizes download times.