RSS/Atom feed Twitter
Site is read-only, email is disabled

Free software for Batch file conversion

This discussion is connected to the gimp-user-list.gnome.org mailing list which is provided by the GIMP developers and not related to gimpusers.com.

This is a read-only list on gimpusers.com so this discussion thread is read-only, too.

18 of 19 messages available
Toggle history

Please log in to manage your subscriptions.

606228321.1609649.152726025... 25 May 17:00
  Free software for Batch file conversion baskaran rajaram via gimp-user-list 25 May 14:57
   Free software for Batch file conversion Steve Kinney 27 May 18:24
    Free software for Batch file conversion Steve Kinney 27 May 18:30
     Free software for Batch file conversion MartaUa 09 Aug 17:43
      Free software for Batch file conversion hannashichko 13 Sep 06:19
      Free software for Batch file conversion parker_nelson 22 Sep 10:45
       Free software for Batch file conversion hannashichko 22 Sep 18:49
        Free software for Batch file conversion hannashichko 22 Sep 18:50
         Free software for Batch file conversion Jeffrey1Marcs 25 Sep 09:38
         Free software for Batch file conversion Jeffrey1Marcs 25 Sep 09:38
     Free software for Batch file conversion hannashichko 12 Oct 13:20
   Free software for Batch file conversion hannashichko 28 Sep 08:14
   Free software for Batch file conversion hannashichko 17 Oct 13:10
    Free software for Batch file conversion hannashichko 10 Nov 17:30
   Free software for Batch file conversion lynelleronlegrorenh 19 Nov 10:34
    Free software for Batch file conversion hannashichko 21 Nov 13:33
     Free software for Batch file conversion andreijackson 22 Nov 23:50
      Free software for Batch file conversion doraflores23 13 Dec 07:59
baskaran rajaram via gimp-user-list
2018-05-25 14:57:35 UTC (almost 6 years ago)

Free software for Batch file conversion

Dear,
I want to convert batch of more than 500 . jpg,. png files into a single. pdf file. How shall I do using GIMP installation., Shall you pls explain in steps.

Will the. Pdf be OCR enabled, password protected for character searching. Hope there won't be necessary for uploading raw file for convertion.

If not what other free software will do for my task.

Rds, Baskar

Steve Kinney
2018-05-27 18:24:53 UTC (almost 6 years ago)

Free software for Batch file conversion

On 05/25/2018 10:57 AM, baskaran rajaram via gimp-user-list wrote:

Dear,
I want to convert batch of more than 500 . jpg,. png files into a single. pdf file. How shall I do using GIMP installation., Shall you pls explain in steps.

Will the. Pdf be OCR enabled, password protected for character searching. Hope there won't be necessary for uploading raw file for convertion.

If not what other free software will do for my task.

On any (? probably so) operating system you have, Scribus will do the job. Open a new document, select a template with your desired page size and etc., and start adding image frames, importing images to them, and (probably) adjusting the frame to image size (right click for options). Save the file (for re-use, adjustments, etc. as needed, then export it as PDF with your desired options per the menu that comes up.

If you need to add page numbers, captions, or other text Scribus will probably be the way to go.

https://wiki.scribus.net/canvas/Download

A Scribus tutorial:

https://wiki.scribus.net/canvas/Get_Started_With_Scribus:4

Or if you are using an operating system that supports it, and your images are whole pages, imagemagick might do the trick way more simply and quickly. On Linux I have used it to convert scanned pages to PDF. The images will appear as pages in alphabetical order, so add 01, 02, etc to the front of their names if needed. Then...

1. Examine the images, determine a good target width for all of them.

2. Edit images if/as required.

3. If necessary equalize image widths via: mogrify -resize [pixels] *.jpg

*NOTE* Assure that all images have the same DPI value, use "mogrify -density [DPI] *.jpg" (or png, etc.) if required.

4. To convert all images in a directory to one pdf file, do:

convert *.jpg [output].pdf

With a large number of pages, the process tends to hang. In that case, this script has done the trick for me. Copy and save the text below as a plain text file, put it in your home directory's /bin folder and set it as executable (chmod +x [script-name.scr]). Then put the images in one directory (anywhere), open a terminal there and type the name of your script to run it against your images:

#!/bin/sh # convert large number of .jpg files to one PDF file. Equalize widths of .jpg files first via: mogrify -resize [pixels] *.jpg

for f in *.jpg; do
convert "$f" "${f%.jpg}.pdf"
done
pdftk *.pdf cat output combined.pdf/

Steve Kinney
2018-05-27 18:30:35 UTC (almost 6 years ago)

Free software for Batch file conversion

On 05/27/2018 02:24 PM, Steve Kinney wrote:

[...]

Or if you are using an operating system that supports it, and your images are whole pages, imagemagick might do the trick way more simply and quickly. On Linux I have used it to convert scanned pages to PDF. The images will appear as pages in alphabetical order, so add 01, 02, etc to the front of their names if needed. Then...

1. Examine the images, determine a good target width for all of them.

2. Edit images if/as required.

3. If necessary equalize image widths via: mogrify -resize [pixels] *.jpg

*NOTE* Assure that all images have the same DPI value, use "mogrify -density [DPI] *.jpg" (or png, etc.) if required.

4. To convert all images in a directory to one pdf file, do:

convert *.jpg [output].pdf

With a large number of pages, the process tends to hang. In that case, this script has done the trick for me. Copy and save the text below as a plain text file, put it in your home directory's /bin folder and set it as executable (chmod +x [script-name.scr]). Then put the images in one directory (anywhere), open a terminal there and type the name of your script to run it against your images:

#!/bin/sh # convert large number of .jpg files to one PDF file. Equalize widths of .jpg files first via: mogrify -resize [pixels] *.jpg

for f in *.jpg; do
convert "$f" "${f%.jpg}.pdf"
done
pdftk *.pdf cat output combined.pdf/

I forgot: Requires imagemagic (of course) and, if using the script, also pdftk ("PDF Toolkit). You might need to install them, but if so the are in the repos so that should present no problem - use your package manager, or appropriate terminal commands. For instance, on Debian family systems (Ubuntu, Mind) do:

sudo apt-get install imagemagick pdftk

:o)

2021-08-09 17:43:18 UTC (over 2 years ago)
postings
1

Free software for Batch file conversion

On the topic of e-commerce, I suggest reading https://belvg.com/. Very interesting and informative site.

2021-09-13 06:19:29 UTC (over 2 years ago)
postings
8

Free software for Batch file conversion

On the topic of e-commerce, I suggest reading https://belvg.com/. Very interesting and informative site.

You can find all the information you need on this site by clicking on the link https://wellmage.com/services/magento-development

2021-09-22 10:45:12 UTC (over 2 years ago)
postings
1

Free software for Batch file conversion

I advise you to follow the link if you are interested in e-commerce and prest modules https://module-presta.com/themes.html

2021-09-22 18:49:44 UTC (over 2 years ago)
postings
8

Free software for Batch file conversion

I read all the comments, I like your opinion on the subject. You can find more information by following the link to this website store.belvg.com

2021-09-22 18:50:34 UTC (over 2 years ago)
postings
8

Free software for Batch file conversion

2021-09-25 09:38:11 UTC (over 2 years ago)
postings
5

Free software for Batch file conversion

Und für welche Software hast Du Dich entschieden?

2021-09-25 09:38:48 UTC (over 2 years ago)
postings
5

Free software for Batch file conversion

Und für welche Software hast Du Dich entschieden? https://flowcite.com/

2021-09-28 08:14:57 UTC (over 2 years ago)
postings
8

Free software for Batch file conversion

After seeing all the comments, I realized that you can find the information you need by following the link to this website https://belvg.co/shopify-development

2021-10-12 13:20:46 UTC (over 2 years ago)
postings
8

Free software for Batch file conversion

I've looked through everything people have written here and realized that you can find the information you need by following the link to this website http://forums.delphiforums.com/vpshostinguae/messages/1621/1

2021-10-17 13:10:02 UTC (over 2 years ago)
postings
8

Free software for Batch file conversion

I have reviewed everything that people write here and realized that you can find the information you need by clicking on the link to this website https://www.munaluchibridal.com/locations/

2021-11-10 17:30:49 UTC (over 2 years ago)
postings
8

Free software for Batch file conversion

Follow the link to this website, you will find everything you need https://belvg.de/shopware-support

2021-11-19 10:34:53 UTC (over 2 years ago)
postings
1

Free software for Batch file conversion

If you still have questions and need help with E-commerce, write to these guys, they will help https://wellmage.com/services/web-development

2021-11-21 13:33:36 UTC (over 2 years ago)
postings
8

Free software for Batch file conversion

Follow the link to this website, you will find everything you need https://magexts.com/top-5-magento-customer-image-upload-extension-to-build-customers-trust/

2021-11-22 23:50:46 UTC (over 2 years ago)
postings
1

Free software for Batch file conversion

Follow the link to this website, you will find everything you need

https://www.price2spy.com/blog/consumer-behavior-of-online-customers/

2021-12-13 07:59:54 UTC (over 2 years ago)