Pages

Saturday, March 27, 2010

How to convert other image-format files to pfd format and vice versa under Linux

Have you ever been in need of converting a jpg file to a pdf file or the other way around? Well, I have recently.

Under Linux, all you have to do is to open up a terminal and type:

convert oldfile.jpg newfile.pdf

Is this not beautiful ? :)

Wednesday, March 24, 2010

How to merge or reduce pdf file-size under Linux Distributions

How many times were you in a position in which you needed to merge, or reduce the size of some .pdf files ? If you are using a Linux distribution, then you can rely on some simple command-line instructions to allow you to do so easily.

First, in order to start editing the pdf files, you have to install two packages, namely Ghostscript and PDFTK. Now, in order to merge the two files enter the following in the terminal:

gs -dNOPAUSE -sDEVICE=pdfwrite -sOUTPUTFILE=firstANDsecond.pdf -dBATCH first.pdf second.pdf


Notice the "AND" between the first and second files.

Now, in order to reduce the size of the pdf files, you will have to type the following in the terminal:


gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/screen -dNOPAUSE -dQUIET -dBATCH -sOutputFile=output.pdf input.pdf


I hope this post is helpful.