Announcement

Collapse
No announcement yet.

Extracting few subsequent pages from tiff to pdf

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

    Extracting few subsequent pages from tiff to pdf

    Hi guys:

    Can you help me with the following problem.
    I have a number of tiff images each with approx 30 pages.
    I want to split each tiff image into pdf files like this:
    page 1+2 into file1.pdf
    page 3+4+5 into file2.pdf
    page 6+7 into file3.pdf
    etc.

    Suggestions how to handle this ?

    Thx in advance

    #2
    Try to use a pdf printer like FreePDF XP or PDFCreator to convert and join into your wanted pdf bundle!
    For extended jobs to handle pdf files you can use the program BeCyPDFMetaEdit!

    Comment


      #3
      Could use the command line or a batch file to perform the process, if all files are alike.
      Code:
      i_view32.exe c:\original.tif /extract=(c:\temp,tif)
      Code:
      i_view32.exe /multitif=(c:\output\split_001.tif,c:\temp\original_page_0001.tif,c:\temp\original_page_0002.tif)
      Code:
      i_view32.exe c:\output\*.tif /convert=c:\output\*.pdf
      Otherwise, use the IrfanView interface to do the extraction and creation. View>Multipage images>Extract all pages and View>Multipage images>Create Multipage TIF. Conversion from TIF to PDF must still be done via command line in batch, as it is not supported in the batch dialog. You could however save each individually. If you don't, you could skip creation of TIFs and just make a multipage PDF contact sheet in IrfanView Thumbnails using the extracted images.

      Any way you do it, you have your work cut out for you when making large changes as you describe.

      Comment

      Working...
      X