Announcement

Collapse
No announcement yet.

Convert PDF to TIFF -> all Pages

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Convert PDF to TIFF -> all Pages

    Hi,
    just want to convert (drag&drop) pdfs to tiffs. This works fine, but, only the first page is converted:

    Code:
    FOR %%a IN (%*) DO (
    	"c:\Program Files (x86)\IrfanView\i_view32.exe" %%a /tifc=6 /bpp=8 /gray /convert=%%~na.tiff
    )
    I see the option (german): "Alle Seiten aus dem Originalbild speichern" -> humble translation: "Save all pages from the original image"

    This is the desired option, but I want to have this option in the command line fixed.

    Thanks and w/best regards
    Michael

    #2
    Ah, ok, found that some options are not supported by command line, thereĀ“s to be an ini-File. (parameter: /ini=".\something.ini")

    Works now. But I see another issue, only page 1 is converted to gray, I need all pages converted. Parameter advAllPages=1 is not the solution.

    Ideas?

    Comment


      #3
      Morning,

      no ideas? Still, page 1 is gray as aspected, following pages are coloured

      Comment


        #4
        conclusion:

        Using the GUI-Batch everthing is ok, all pages are gray.

        Using this instead:
        Code:
        "c:\Program Files (x86)\IrfanView\i_view32.exe" %%a  /ini=%appdata%\Roaming\IrfanView\i_view32.ini /convert=%%~na.tiff
        the result ist coloured. Huhh????

        Comment

        Working...
        X