I have scanned in 300 pages of pictures and want to "bind" it as a pdf book.
I tried some ways, but I could not make it with so many pages. I am looking for a way, where all pages named as A00001, A00002 ...... in one directory would be converted into one pdf file. Hereby, it should always add one page and not open all pages at once. Which program, script do you suggest for that? bye Ronald Wiplinger -- Check the headers for your unsubscription address For additional commands send e-mail to [hidden email] Also check the archives at http://lists.suse.com Please read the FAQs: [hidden email] |
On 10/24/06, Ronald Wiplinger <[hidden email]> wrote:
> I have scanned in 300 pages of pictures and want to "bind" it as a pdf book. > > I tried some ways, but I could not make it with so many pages. > > I am looking for a way, where all pages named as A00001, A00002 ...... > in one directory would be converted into one pdf file. Hereby, it should > always add one page and not open all pages at once. > > Which program, script do you suggest for that? > Try using ImageMagick to convert every picture to PS, and then ps2pdf to create 1 pdf per picture, and then pdftk for merging all resulting pdfs. -- Svetoslav Milenov (Sunny) Even the most advanced equipment in the hands of the ignorant is just a pile of scrap. -- Check the headers for your unsubscription address For additional commands send e-mail to [hidden email] Also check the archives at http://lists.suse.com Please read the FAQs: [hidden email] |
I wrote a script that does just that.....
http://www.novell.com/coolsolutions/tools/17083.html Details Creating one pdf file from a directory of multiple .png scans. Using kooka and my Cannon scanner, I have been scanning some articles into my computer, these usually require several pages of scans, and I save the images as .png files. Kooka saves the images in the format kscan_0001.png , kscan_0002.png , and so on. As long as you scan in pages in the same order you want them in the pdf, you won't have any need to re-number the scanned image files. (You could save the scanned files in almost any image format you wish. Simply change the script to work with the image format you want to work with.) The goal was to get ONE pdf document that was cross platform compatible created from the multiple scans... all with minimal effort on my part other than the scanning. Using bash, I created a quick script to do the repetitive work. What it does: First it takes .png scans from the current directory and creates a .pdf file for each one with imagemagick. Then, with pdftk, all the .png scans are rolled into one larger .pdf file. Code: ------------------------------------------------------------------------------- #!/bin/bash # FILE : makepdf.sh # Function: Creates ONE pdf file from a directory of multiple png scans. # Copyright (C) 2006 Dave Crouse <dave NOSPAMat usalug.org> # ------------------------------------------------------------------------ # # # NOTES: # Scans must be in .png format, or change the imagetype variable. # Converts each png image file to a pdf file. # ####################### # VARIABLE: Change this to jpg, bmp, or whatever image file type your converting from. imagetype="png" ####################### # Test to make sure required programs are installed. if [[ -z $( type -p convert ) ]]; then echo -e "ImageMagick -- NOT INSTALLED !";exit ;fi if [[ -z $( type -p pdftk ) ]]; then echo -e "pdftk -- NOT INSTALLED !";exit ;fi read -p "What would you like to name your new pdf file ? :" newname; for i in *.${imagetype} ; do convert $i $i.pdf;done; pdftk *.pdf cat output $newname.pdf; for i in *.${imagetype} ; do rm -f $i.pdf;done; echo "Conversion complete. PDF file ${newname}.pdf created."; exit 0 ------------------------------------------------------------------------------- In my .bashrc file I have added: alias makepdf='sh /home/crouse/Scripts/makepdf.sh' From the bash shell, I just go into the directory where the scanned images are, and type "makepdf" and create a pdf file with all the .png images in that directory. Makes creating a pdf from multiple scans painless. For more info on the required programs: Pdftk - is a command-line tool for manipulating PDF documents. Home Page: http://www.accesspdf.com/pdftk/ Suse Page: http://www.novell.com/products/linuxpackages/professional/pdftk.html ImageMagick - is a robust collection of tools and libraries to read, write, and manipulate an image in many image formats. Home Page: http://www.imagemagick.org/ Suse Page: http://www.novell.com/products/linuxpackages/professional/imagemagick.html Hope that helps. Crouse On 10/24/06, Sunny <[hidden email]> wrote: > On 10/24/06, Ronald Wiplinger <[hidden email]> wrote: > > I have scanned in 300 pages of pictures and want to "bind" it as a pdf book. > > > > I tried some ways, but I could not make it with so many pages. > > > > I am looking for a way, where all pages named as A00001, A00002 ...... > > in one directory would be converted into one pdf file. Hereby, it should > > always add one page and not open all pages at once. > > > > Which program, script do you suggest for that? > > > > Try using ImageMagick to convert every picture to PS, and then ps2pdf > to create 1 pdf per picture, and then pdftk for merging all resulting > pdfs. > > -- > Svetoslav Milenov (Sunny) > > Even the most advanced equipment in the hands of the ignorant is just > a pile of scrap. > > -- > Check the headers for your unsubscription address > For additional commands send e-mail to [hidden email] > Also check the archives at http://lists.suse.com > Please read the FAQs: [hidden email] > > > -- Check the headers for your unsubscription address For additional commands send e-mail to [hidden email] Also check the archives at http://lists.suse.com Please read the FAQs: [hidden email] |
This post has NOT been accepted by the mailing list yet.
In reply to this post by Ronald Wiplinger
I think what you need is a converter tool which allows you to do batch conversion work from pics to pdfs. As you see, there are many free conversion tools online. But I don't suggest you to use them to do with your conversion work. Because I always believe that the free tools online do not have so many professional functions as the paid ones. And it is said that some of them might contain some virus. Check some free trials of the paid professional conversion tools to convert scanned pictures to pdfs first before you make your final decision if possible. I also suggest you choose one whose way of processing is simple and fast. It can save a lot of time for you. Remember to do your conversion work according to its tutorial page about how to convert between PDF and other formats using C#.NET. I hope you success. Good luck.
Best regards, Arron |
This post has NOT been accepted by the mailing list yet.
Hi, Arron.
Thanks for your nice sharing. I wonder whether the PDF converter I am testing these days can help with that? Any suggestion will be appreciated. Thanks in advance. Best regards, Pan |
Free forum by Nabble | Edit this page |