Page 4 of 7

Posted: Thu 17 Mar 2016, 02:24
by vicmz
Can I specify the page orientation (vertical/horizontal page) for the CONVERTED.PDF file?

Posted: Thu 17 Mar 2016, 02:52
by rcrsn51
What PeasyPDF version are you using?

What kind of data are you converting?

What tool are you using?

What have you already tried?

Posted: Fri 18 Mar 2016, 03:11
by vicmz
rcrsn51 wrote:What PeasyPDF version are you using?

What kind of data are you converting?

What tool are you using?

What have you already tried?
I was using PeasyPDF 3.3.

I first converted high resolution, 300dpi scanned JPG images to PDF files and then tried to make a PDF. I wanted to specify the page orientation but since I didn't see an option I assumed it would autodetect by the image width/height, but it was all vertical.

I experimented converting every pictures to PDF and then mergin all PDF files into one. The output file was all in horizontal pages, but the paper size was not letter, it was smaller.

Since it seemed not implemented yet in PeasyPDF, I used XnConvert to rotate all JPG files at once and then Master PDF Editor to make the final PDF file.

Posted: Sun 22 May 2016, 12:51
by rcrsn51
Deleted.

Posted: Tue 24 May 2016, 11:19
by rcrsn51
PeasyPDF v3.5 is posted above. There is a new JPEG section with tools for combining a batch of JPEG photos into a single PDF document.

Posted: Wed 25 May 2016, 08:14
by rcrsn51
PeasyPDF v3.6 has a new Landscape option in the Convert tool. This turns the PDF page sideways so a landscape image will fit in its proper orientation.

Update: PeasyPDF v3.7 has two new Custom sizes in the Convert tool. If the original graphic has low resolution, the resulting PDF will be small and may require zooming in your PDF viewer. The Custom+ setting increases the initial size of the PDF. Similarly, the Custom- size shrinks a PDF made from a hi-res image that may overflow the screen.

Posted: Sun 12 Jun 2016, 03:38
by slavvo67
Have you explored adding options such as electronic signatures? I've been seeking an electronic signature solution in Puppy for quite sometime...

Posted: Mon 13 Jun 2016, 12:22
by rcrsn51
slavvo67 wrote:Have you explored adding options such as electronic signatures?
No. That's well beyond the scope of this project.

Posted: Mon 13 Jun 2016, 19:10
by greengeek
slavvo67 wrote:I've been seeking an electronic signature solution in Puppy for quite sometime...
I think it might be worth opening a thread for that. There are various ways of adding a signature (and different meanings to the term "electronic signature" eg: see this). I feel sure you would get a variety of suggestions that might help.
.

Posted: Tue 26 Jul 2016, 00:35
by rcrsn51
PeasyPDF v3.8 has a new tool in the Extract section for dealing with large PDF files. See the instructions in the main post.

Posted: Thu 11 Aug 2016, 14:08
by step
Hi rcrsn51, I'm basing this comment on version version 2.3 2012-11-15, as found in Fatdog64-710a2 (I guess it's the same as in Fd-702). I was converting a single jpeg file to PDF, and the resulting image was smaller than the original. Looking into the command pipeline that does the conversion in that version, I see that the input jpeg dpi value isn't taken into account. My jpeg is 150x150 dpi, but it gets converted assuming a default 300x300 dpi value, so it looks 1/4th the size in the final PDF, and so it gets printed, which is a problem.
I can suggest a slight variation of the command pipe line, assuming that you can extract the dpi value NxN from the input image:

Code: Select all

jpegtopng in.jpg | pnmtops -dpi=NxN -equalpixels -center -noturn |
  ps2pdf -sPAPERSIZE=letter - - > out.pdf
I've thrown in a PDF paper-size option too, which my peasypdf version doesn't support for this type of conversion.
This is all I wanted to say about peasypdf.

As an aside, the following code wraps up this idea in a shell function that can be used to convert jpeg to pdf directly at the terminal prompt or in a larger script. It uses exiftool to extract the dpi value from the input image. Exiftool works well but it isn't standard in Puppy Linux. I don't know how to extract dpi info in a way that works across all Puppies.

Code: Select all

_jpg2pdf() # $1-input.jpg [$2-output.pdf [$3-paper-size [$4-xdpi'x'ydpi]]] {{{1
# jpg2pdf /root/in.jpg => /root/in.jpg.pdf LETTER size
# jpg2pdf /root/in.jpg /tmp/out.pdf a4 => /tmp/out.pdf A4-size
# jpg2pdf /root/in.jpg /tmp/out.pdf letter 200x200 => /tmp/out.pdf LETTER-size 200x200 dpi
# If $4 (dpi) is "" exiftool is used to extract dpi info from $1
{
  local outpdf="$1.pdf" papersize dpi
  [ -n "$2" ] && outpdf=$2
  papersize=${3:-letter}
  dpi=${4:+-dpi=}$4
  [ -z "$dpi" ] && dpi=$(
    exiftool -p '${xresolution}x${yresolution}' "$1" |
    sed -ne '/1x1/ q; s/^/-dpi=/p'
    )
  jpegtopnm "$1" |
  pnmtops $dpi -equalpixels -center -noturn |
  ps2pdf -sPAPERSIZE="$papersize" - - > "$outpdf"
}
The lines that extract dpi data need explaining. First, exiftool prints the X and Y dpi values separated by 'x'. If it can't find such values in the file, exiftool prints '1x1' (peculiar), so we need to treat this as a special case, when output pipes into sed. The first part of the sed script "/1x1/ q;" looks for '1x1' and quits sed immediately without printing anything. Effectively this sets the dpi shell variable to "". If instead sed finds something different than '1x1', i.e., 150x150 in my case, it prepends "-dpi=" to it and prints the result. This effectively sets the dpi shell variable to "-dpi=150x150", in my case. Of course, this works for all dpi values.
If exiftool is replaced with another command, one needs to adapt the first part of the sed script to catch the null dpi value condition. For instance, a hypothetical getdpi command that returns "" when it can't find the dpi value could be processed with sed -n '/^$/ q; s/^/-dpi=/p'.

Posted: Mon 31 Oct 2016, 06:01
by greengeek
Hi rcrsn51 - just wanted to say another thanks for peasy pdf (I'm using v3.2). My wife is applying for a new teaching job and I had to scan 5 colour documents as pdfs which came to a total of about 11Mb which I wasn't keen to email - so I used peasy pdf to combine them and it produced one nice document which totalled 900kb with no apparent loss of quality (to my eyes at least...)

Much nicer to email.

cheers!

Posted: Thu 05 Oct 2017, 13:10
by jplt_bis
Hello all,

is it possible to (bash) merge multiple PDF files with PeasyPDF , i have about 20 pdfs to merge in one pdf !

Thanks for your help .

Posted: Thu 05 Oct 2017, 13:34
by rcrsn51
In the Join section, click New and View. This opens the project window.

Drag links from your 20 PDFs into this window.

Click Join.

Posted: Thu 05 Oct 2017, 14:31
by jplt_bis
So wonderful , it works very well.

Maybe update the first post to add this little trick, because i think a lot of people would be interested !

Another fact that, i tested 2 other tools to join pdfs in linux pdfunite , gs (ghostscript), pdftk but all fails because "merge failed your pdf is encrypted" ! but PeasyPDF do the job ;-)


Great thanks rcrsn51 you save my day :D

Posted: Thu 05 Oct 2017, 14:42
by rcrsn51
jplt_bis wrote:So wonderful , it works very well.
Excellent.
Maybe update the first post to add this little tricks
Good idea.
Another fact that i tested 2 other tools to join pdfs in linux pdfunite , gs (ghostscript), pdftk but all fails because "merge failed your pdf is encrypted" !
That may occur because your PDFs are a newer version and the tool doesn't recognize them. However PeasyPDF uses Ghostscript to join PDFs.

What Puppy version are you using and which version of PeasyPDF?

Posted: Thu 05 Oct 2017, 19:25
by jplt_bis
I'am on tahrpup 6.0.5 and peasypdf 3.3

Posted: Fri 06 Oct 2017, 04:40
by Puppyt
rcrsn51 wrote:In the Join section, click New and View. This opens the project window.

Drag links from your 20 PDFs into this window.

Click Join.
oooooh great tip! Will definitely be using that in future - with dragging 10+ single successive files across into the 'join' dialogue I often think I've lost my place, or position in the queue. Cheers rcrsn51 :)

Posted: Fri 06 Oct 2017, 09:39
by rcrsn51
The advantage of adding files one-by-one is that you get a specific order. In a PDF document, that might be important.

If you just drag a bunch of files into the project folder, they will be joined in their alphabetical filename order.

Posted: Mon 13 Nov 2017, 00:45
by oldprinter
I've been using the 'Join' feature for awhile now.
I produce a pdf with individual pages (in OpenOffice), drop that pdf into Bookbinder 3, which creates pdf's of the signatures, then I use Join to assemble a single pdf of the project as sigs of the printer's pairs. Then I have just one file to print out for the project. Projects average 240 pages and 8 sigs. I add tic marks to keep the sigs easily indentified (and in correct order for binding).

I prefer to drop in sig pdfs one at a time, not batch drop, so if there is an error, it's mine. (Checklists are very helpful)

Tom