Page 1 of 1

software : merging JPEGs into PDF - something in MX package installer?

Posted: Tue Nov 02, 2021 5:47 pm
by hkjz
Hey,

is there a software for merging JPEGs into PDF - something in MX package installer?

MasterPDF do only merging of other PDFs

Thanks

Re: software : merging JPEGs into PDF - something in MX package installer?

Posted: Tue Nov 02, 2021 5:51 pm
by Jerry3904
You can convert an image to PDF (online, for instance) and then merge the two pdfs. But that probably won't look very good unless you can have the image on its own page.

Re: software : merging JPEGs into PDF - something in MX package installer?

Posted: Tue Nov 02, 2021 7:03 pm
by old_guy
You can open LibreOffice Writer. Drag your pics into it. Resize them as you like. Then Export As PDF.
Earl

Re: software : merging JPEGs into PDF - something in MX package installer?

Posted: Tue Nov 02, 2021 7:13 pm
by manyroads
Try using either pdf arranger or pdf shuffler (both are in mxpi under stable repo)

Re: software : merging JPEGs into PDF - something in MX package installer?

Posted: Tue Nov 02, 2021 7:22 pm
by OKie
Create PDF files from single images:
Single File: Use img2pdf program on command line:
img2pdf filename.jpg > filename.pdf

Also, look up ImageMagick. They have the montage to arrange images on a page: https://legacy.imagemagick.org/Usage/montage/

Re: software : merging JPEGs into PDF - something in MX package installer?  [Solved]

Posted: Tue Nov 02, 2021 7:55 pm
by dolphin_oracle
pdf-arranger (preinstalled) can do it if you also install img2pdf (availabe in synaptic).

if the images have an "alpha" channel, I don't think it will work. my jpgs worked great. png files not so much.

Re: software : merging JPEGs into PDF - something in MX package installer?

Posted: Tue Nov 02, 2021 9:04 pm
by Gordon Cooper
GIMP can resize, crop and otherwise modify image files, then export to pdf.

Re: software : merging JPEGs into PDF - something in MX package installer?

Posted: Tue Nov 02, 2021 9:19 pm
by hkjz
dolphin_oracle wrote: Tue Nov 02, 2021 7:55 pm pdf-arranger (preinstalled) can do it if you also install img2pdf (availabe in synaptic).

if the images have an "alpha" channel, I don't think it will work. my jpgs worked great. png files not so much.
Thank you all,
this one will do

Re: software : merging JPEGs into PDF - something in MX package installer?

Posted: Wed Nov 03, 2021 5:41 am
by Geek3579
For the record, I believe imagemagick is installed in MX-Linux by default. Its fairly easy to use on the command line:

1) Open a terminal in the directory containing the .JPG or .jpg files
2) Run "convert "*.{JPG}" -quality 100 FILEOUT.PDF" without quotes, using the extension for your situation

This will convert all JPGs to PDFs and combine them in one file, leaving the original JPGs intact.
100 is the dpi - use a larger number for more detail.
To remove all JPGs as well add the following on the same line: " && rm *.JPG"
If you need to convert any .JPG to .jpg so they are all the same use this (without quotes) in the command line: "JPG jpg *.JPG" before running the command in (2).

Re: software : merging JPEGs into PDF - something in MX package installer?

Posted: Thu Nov 04, 2021 7:22 am
by hkjz
Geek3579 wrote: Wed Nov 03, 2021 5:41 am For the record, I believe imagemagick is installed in MX-Linux by default. Its fairly easy to use on the command line:

1) Open a terminal in the directory containing the .JPG or .jpg files
2) Run "convert "*.{JPG}" -quality 100 FILEOUT.PDF" without quotes, using the extension for your situation

This will convert all JPGs to PDFs and combine them in one file, leaving the original JPGs intact.
100 is the dpi - use a larger number for more detail.
To remove all JPGs as well add the following on the same line: " && rm *.JPG"
If you need to convert any .JPG to .jpg so they are all the same use this (without quotes) in the command line: "JPG jpg *.JPG" before running the command in (2).
Awesome,
acutally it is not installed by default,

but it is on the front page of MX Package Installer,
seems good to know,

Thanks