|
|
I want to use SetBPP(3) to convert color PDF to color TIFF. It does not seem to work? |
Before calling Convert you must call SetCompress(5). The default value for SetCompress is 4, hence without using SetCompress the resulting TIFF would be B/W (group 4 compressed). The correct sequence to convert color PDF's to color TIFF's is: 1. SetBPP(3) 2. SetCompress(5) 3. Convert(Inputfile, Outputfile) |
| Previous: |
|
| Next: |
|