Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. Suggestions for converting PDF to Tiff

Suggestions for converting PDF to Tiff

Scheduled Pinned Locked Moved The Lounge
questionwindows-admintoolsdiscussion
16 Posts 11 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • R Offline
    R Offline
    Ron Nicholson
    wrote on last edited by
    #1

    I have a project where I need to convert 2000 to 5000 pdf files to tiff images every day. I have a 'mock-up' in powershell that works ok. I will need to add multiple pdf's to one tiff as seperate pages. The file sizes are around 60k My question is: What would be the best way? The way I see it, I have a few options. 1.) Write something. Are there any libraries I should look at. Doesn't have to be free, but free is always nice. I used Ghostscript to convert them in my powershell script. Not really confident my powershell script can hack the load, but Ghostscript seemed to be ok. 2.) Find something. Needs to monitor a folder or be able to kick it off with task scheduler 3.) ??? Any thoughts?

    C D B S R 10 Replies Last reply
    0
    • R Ron Nicholson

      I have a project where I need to convert 2000 to 5000 pdf files to tiff images every day. I have a 'mock-up' in powershell that works ok. I will need to add multiple pdf's to one tiff as seperate pages. The file sizes are around 60k My question is: What would be the best way? The way I see it, I have a few options. 1.) Write something. Are there any libraries I should look at. Doesn't have to be free, but free is always nice. I used Ghostscript to convert them in my powershell script. Not really confident my powershell script can hack the load, but Ghostscript seemed to be ok. 2.) Find something. Needs to monitor a folder or be able to kick it off with task scheduler 3.) ??? Any thoughts?

      C Offline
      C Offline
      Christopher Duncan
      wrote on last edited by
      #2

      I use CutePdf to print to pdf, and it shows up as just another printer. I wonder if there might be an option like that for you to print to an image (tiff, jpg, whatever). If you could find something like that which would just install as a printer like CutePdf does, maybe you could write a script that prints the docs that it finds in your folder. Don't know how realistic an approach this is - I'm making it up as I go along.

      Christopher Duncan Author of The Career Programmer Enjoy comedy? Watch Talking Head Games (SFW)

      R N 2 Replies Last reply
      0
      • C Christopher Duncan

        I use CutePdf to print to pdf, and it shows up as just another printer. I wonder if there might be an option like that for you to print to an image (tiff, jpg, whatever). If you could find something like that which would just install as a printer like CutePdf does, maybe you could write a script that prints the docs that it finds in your folder. Don't know how realistic an approach this is - I'm making it up as I go along.

        Christopher Duncan Author of The Career Programmer Enjoy comedy? Watch Talking Head Games (SFW)

        R Offline
        R Offline
        Ron Nicholson
        wrote on last edited by
        #3

        Thanks, Christopher. I'll have to see if I can script the input and output. The folders will be static so it should make it easier.

        1 Reply Last reply
        0
        • R Ron Nicholson

          I have a project where I need to convert 2000 to 5000 pdf files to tiff images every day. I have a 'mock-up' in powershell that works ok. I will need to add multiple pdf's to one tiff as seperate pages. The file sizes are around 60k My question is: What would be the best way? The way I see it, I have a few options. 1.) Write something. Are there any libraries I should look at. Doesn't have to be free, but free is always nice. I used Ghostscript to convert them in my powershell script. Not really confident my powershell script can hack the load, but Ghostscript seemed to be ok. 2.) Find something. Needs to monitor a folder or be able to kick it off with task scheduler 3.) ??? Any thoughts?

          D Offline
          D Offline
          Don M
          wrote on last edited by
          #4

          LibTiff[^] is an open source library for reading, writing, and managing tiff files. The download includes a number of command line utilities, including tiffcp and tiffcrop which can combine multiple files into multi-page tiff files. Combine these utilties with your existing powershell script and ghostscript. What's in the PDF file? Just one or more images, or also text? Are the embedded images JPG? If you can simply extract images you could skip the ghostscript step (or any other "print to a file" step), which would probably improve performance. XnView[^] can be used to batch convert images from various file types, including pdf and tiff. PDFtk[^] is a utility for managing PDF files, with a GUI and also a command line interface. Can split pages and extract images from PDF files.

          R 1 Reply Last reply
          0
          • C Christopher Duncan

            I use CutePdf to print to pdf, and it shows up as just another printer. I wonder if there might be an option like that for you to print to an image (tiff, jpg, whatever). If you could find something like that which would just install as a printer like CutePdf does, maybe you could write a script that prints the docs that it finds in your folder. Don't know how realistic an approach this is - I'm making it up as I go along.

            Christopher Duncan Author of The Career Programmer Enjoy comedy? Watch Talking Head Games (SFW)

            N Offline
            N Offline
            Nicholas Marty
            wrote on last edited by
            #5

            There is. Universal Document Converter[^] should be able to do that. Beware: It is not free. You can try the evaluation copy (which places a watermark on the printed documents/images) The cost is 20 - 69$ / License (Depending on your Numbers of Licenses). So should be affordable if it is what you need. I'm not affiliated with the producer/publisher of this product in any way. I only have used this product before for exactly this task.

            1 Reply Last reply
            0
            • R Ron Nicholson

              I have a project where I need to convert 2000 to 5000 pdf files to tiff images every day. I have a 'mock-up' in powershell that works ok. I will need to add multiple pdf's to one tiff as seperate pages. The file sizes are around 60k My question is: What would be the best way? The way I see it, I have a few options. 1.) Write something. Are there any libraries I should look at. Doesn't have to be free, but free is always nice. I used Ghostscript to convert them in my powershell script. Not really confident my powershell script can hack the load, but Ghostscript seemed to be ok. 2.) Find something. Needs to monitor a folder or be able to kick it off with task scheduler 3.) ??? Any thoughts?

              B Offline
              B Offline
              Bassam Abdul Baki
              wrote on last edited by
              #6

              Raeldin wrote:

              I will need to add multiple pdf's to one tiff as seperate pages.

              Can't you merge the PDFs first[^] and then print to TIFF? If you can do the latter and the merging is a problem, the link I posted should help. I use the GUI version found here[^].

              Web - BM - RSS - Math - LinkedIn

              1 Reply Last reply
              0
              • R Ron Nicholson

                I have a project where I need to convert 2000 to 5000 pdf files to tiff images every day. I have a 'mock-up' in powershell that works ok. I will need to add multiple pdf's to one tiff as seperate pages. The file sizes are around 60k My question is: What would be the best way? The way I see it, I have a few options. 1.) Write something. Are there any libraries I should look at. Doesn't have to be free, but free is always nice. I used Ghostscript to convert them in my powershell script. Not really confident my powershell script can hack the load, but Ghostscript seemed to be ok. 2.) Find something. Needs to monitor a folder or be able to kick it off with task scheduler 3.) ??? Any thoughts?

                S Offline
                S Offline
                Septimus Hedgehog
                wrote on last edited by
                #7

                A product we used to use was called OutsideIn which could more or less convert anything to anything. We used it to convert all types of files to tif/gif. To be honest, I don't know how it came to us but it was taken over by Oracle[^]. I don't know if it's free or not but I must suspect that anything they get their hands on will cost a pretty penny or ten. If it's for work, ask your boss to look into it. Despite the Oracle connection it really is a first-class product. It wasn't their creation which probably explains why it used to be a good SDK then, but whether they've run it into the ground now, who knows?

                If there is one thing more dangerous than getting between a bear and her cubs it's getting between my wife and her chocolate.

                1 Reply Last reply
                0
                • D Don M

                  LibTiff[^] is an open source library for reading, writing, and managing tiff files. The download includes a number of command line utilities, including tiffcp and tiffcrop which can combine multiple files into multi-page tiff files. Combine these utilties with your existing powershell script and ghostscript. What's in the PDF file? Just one or more images, or also text? Are the embedded images JPG? If you can simply extract images you could skip the ghostscript step (or any other "print to a file" step), which would probably improve performance. XnView[^] can be used to batch convert images from various file types, including pdf and tiff. PDFtk[^] is a utility for managing PDF files, with a GUI and also a command line interface. Can split pages and extract images from PDF files.

                  R Offline
                  R Offline
                  Ron Nicholson
                  wrote on last edited by
                  #8

                  The PDF's only contain images. I hadn't thought about just extracting the images out before combining and creating the tiff.

                  1 Reply Last reply
                  0
                  • R Ron Nicholson

                    I have a project where I need to convert 2000 to 5000 pdf files to tiff images every day. I have a 'mock-up' in powershell that works ok. I will need to add multiple pdf's to one tiff as seperate pages. The file sizes are around 60k My question is: What would be the best way? The way I see it, I have a few options. 1.) Write something. Are there any libraries I should look at. Doesn't have to be free, but free is always nice. I used Ghostscript to convert them in my powershell script. Not really confident my powershell script can hack the load, but Ghostscript seemed to be ok. 2.) Find something. Needs to monitor a folder or be able to kick it off with task scheduler 3.) ??? Any thoughts?

                    R Offline
                    R Offline
                    RedDk
                    wrote on last edited by
                    #9

                    Photoshop. Here's YOUR chance to spring for it since you've always been reticent to spend bucks on things you're not sure you'd use. The only problem with spending the money on this application? The fact that you'll have a tool that'll serve you silently, frequently, and might gather teabags full of dust (if you don't keep it in a toolbox out of common air). Oh and the fact that you'll be tempted to spend too much time learning how to use all the other glass-etching features that are subservient to "Image Processor" script. Resistance is futile.

                    R 1 Reply Last reply
                    0
                    • R RedDk

                      Photoshop. Here's YOUR chance to spring for it since you've always been reticent to spend bucks on things you're not sure you'd use. The only problem with spending the money on this application? The fact that you'll have a tool that'll serve you silently, frequently, and might gather teabags full of dust (if you don't keep it in a toolbox out of common air). Oh and the fact that you'll be tempted to spend too much time learning how to use all the other glass-etching features that are subservient to "Image Processor" script. Resistance is futile.

                      R Offline
                      R Offline
                      Ron Nicholson
                      wrote on last edited by
                      #10

                      HUH! I have Photoshop CS6 and even use it. Didn't know it would allow me to convert pdf to tiff via command line.

                      R 1 Reply Last reply
                      0
                      • R Ron Nicholson

                        HUH! I have Photoshop CS6 and even use it. Didn't know it would allow me to convert pdf to tiff via command line.

                        R Offline
                        R Offline
                        RedDk
                        wrote on last edited by
                        #11

                        C:\Program Files\...\Adobe Photoshop CS4 (64 Bit)\Presets\Scripts ... "Image Processor.jsx" is what. //// 06/18/2008 09:00 /☠/ c2007 Adobe Systems, Inc. All rights reserved. //// Produced and Directed by Dr. Brown ( a.k.a Russell Preston Brown ) //// Written by Tom Ruark //// UI Design by Julie Meridian To paste any more might cause an infarction. So you are on your own from here.

                        1 Reply Last reply
                        0
                        • R Ron Nicholson

                          I have a project where I need to convert 2000 to 5000 pdf files to tiff images every day. I have a 'mock-up' in powershell that works ok. I will need to add multiple pdf's to one tiff as seperate pages. The file sizes are around 60k My question is: What would be the best way? The way I see it, I have a few options. 1.) Write something. Are there any libraries I should look at. Doesn't have to be free, but free is always nice. I used Ghostscript to convert them in my powershell script. Not really confident my powershell script can hack the load, but Ghostscript seemed to be ok. 2.) Find something. Needs to monitor a folder or be able to kick it off with task scheduler 3.) ??? Any thoughts?

                          B Offline
                          B Offline
                          BotCar
                          wrote on last edited by
                          #12

                          I occasionally use ImageMagick[^] to convert batches of images from one format to another. It can handle a number of file formats, including PDF (as long as you have GhostScript installed, that is).

                          What is this talk of release? I do not release software. My software escapes leaving a bloody trail of designers and quality assurance people in its wake.

                          1 Reply Last reply
                          0
                          • R Ron Nicholson

                            I have a project where I need to convert 2000 to 5000 pdf files to tiff images every day. I have a 'mock-up' in powershell that works ok. I will need to add multiple pdf's to one tiff as seperate pages. The file sizes are around 60k My question is: What would be the best way? The way I see it, I have a few options. 1.) Write something. Are there any libraries I should look at. Doesn't have to be free, but free is always nice. I used Ghostscript to convert them in my powershell script. Not really confident my powershell script can hack the load, but Ghostscript seemed to be ok. 2.) Find something. Needs to monitor a folder or be able to kick it off with task scheduler 3.) ??? Any thoughts?

                            M Offline
                            M Offline
                            Mark_Wallace
                            wrote on last edited by
                            #13

                            If you've got Ghostscript installed, you can use IrfanView. -- Add PDF to the list of files that IrfanView can see (Options > Properties/Settings > Extensions > select Load custom file types and add "PDF|" to the list) -- Browse to your directory with IrfanView and open a PDF file with it. -- Press the T key to open the thumbnail browser. -- Select your files (Ctrl+A, maybe?), then the B key to open the batch dialog. -- Select TIF as the output format, and click the Options button to enter your TIF options. -- (Important one, this) If your PDF files are multi-page, click the Advanced button, and check Overwrite existing files (or it will just convert the first page of each). Too easy, and free as a bird.

                            I wanna be a eunuchs developer! Pass me a bread knife!

                            1 Reply Last reply
                            0
                            • R Ron Nicholson

                              I have a project where I need to convert 2000 to 5000 pdf files to tiff images every day. I have a 'mock-up' in powershell that works ok. I will need to add multiple pdf's to one tiff as seperate pages. The file sizes are around 60k My question is: What would be the best way? The way I see it, I have a few options. 1.) Write something. Are there any libraries I should look at. Doesn't have to be free, but free is always nice. I used Ghostscript to convert them in my powershell script. Not really confident my powershell script can hack the load, but Ghostscript seemed to be ok. 2.) Find something. Needs to monitor a folder or be able to kick it off with task scheduler 3.) ??? Any thoughts?

                              R Offline
                              R Offline
                              Rage
                              wrote on last edited by
                              #14

                              I use an intern for such tasks. :rolleyes:

                              ~RaGE();

                              I think words like 'destiny' are a way of trying to find order where none exists. - Christian Graus Do not feed the troll ! - Common proverb

                              1 Reply Last reply
                              0
                              • R Ron Nicholson

                                I have a project where I need to convert 2000 to 5000 pdf files to tiff images every day. I have a 'mock-up' in powershell that works ok. I will need to add multiple pdf's to one tiff as seperate pages. The file sizes are around 60k My question is: What would be the best way? The way I see it, I have a few options. 1.) Write something. Are there any libraries I should look at. Doesn't have to be free, but free is always nice. I used Ghostscript to convert them in my powershell script. Not really confident my powershell script can hack the load, but Ghostscript seemed to be ok. 2.) Find something. Needs to monitor a folder or be able to kick it off with task scheduler 3.) ??? Any thoughts?

                                J Offline
                                J Offline
                                Joan M
                                wrote on last edited by
                                #15

                                Never tried it, but it seems to be exactly what you need: http://www.zan1011.com Posted from a blackberry sorry if t'he link don't works... :(

                                [www.tamautomation.com] | Robots, CNC and PLC machines for grinding and polishing. [YouTube channel]

                                1 Reply Last reply
                                0
                                • R Ron Nicholson

                                  I have a project where I need to convert 2000 to 5000 pdf files to tiff images every day. I have a 'mock-up' in powershell that works ok. I will need to add multiple pdf's to one tiff as seperate pages. The file sizes are around 60k My question is: What would be the best way? The way I see it, I have a few options. 1.) Write something. Are there any libraries I should look at. Doesn't have to be free, but free is always nice. I used Ghostscript to convert them in my powershell script. Not really confident my powershell script can hack the load, but Ghostscript seemed to be ok. 2.) Find something. Needs to monitor a folder or be able to kick it off with task scheduler 3.) ??? Any thoughts?

                                  J Offline
                                  J Offline
                                  Joan M
                                  wrote on last edited by
                                  #16

                                  Today I've been rading :bob: Press Releases[^] and I've found this: http://www.sautinsoft.com/products/pdf-focus/index.php[^]. Hope this helps... :thumbsup:

                                  [www.tamautomation.com] | Robots, CNC and PLC machines for grinding and polishing. [YouTube channel]

                                  1 Reply Last reply
                                  0
                                  Reply
                                  • Reply as topic
                                  Log in to reply
                                  • Oldest to Newest
                                  • Newest to Oldest
                                  • Most Votes


                                  • Login

                                  • Don't have an account? Register

                                  • Login or register to search.
                                  • First post
                                    Last post
                                  0
                                  • Categories
                                  • Recent
                                  • Tags
                                  • Popular
                                  • World
                                  • Users
                                  • Groups