Can someone advise what is the optimal way to convert a pdf to a 16bit tiff?
When i say “optimal” i mean fastest.
So far my code takes about 6 seconds, it goes something like this -
- Load - new PDFDocument(path)
- Create new memory stream
- TiffDevice.Process(PDFDocument,memory stream)
- Image.FromStream(memoryStream)
- EncoderParameter(ColorDepth,24L)
- Image.Save(Path,Codec,EncoderParameter)
Source pdf is 10 page 32bit colour
Cheers