Skip to main content

PDF files : Merge pdf files into one , extract the pages into new one

 Today, we will take a look into he pdf file management. Many a times we come across situations where 

1. We have to extract certain pages of a large pdf file.

2. We have merge several pdf files into a single pdf file.

We are covering the basic usage below. We are using Ubuntu Linux for this exercise.

Merge several files into a single file

'Pdfunite' is the utility that I will be using today. In my example, I have 3 input files (pdf1.pdf, pdf2.pdf, pdf3.pdf)

 

Place all the files to be merged in a folder. Use the terminal to navigate to the folder.

Execute the command as below:

pdfunite is the utility, then we list out all the files in the sequence it has to be added to the resulting file. The last name is the name of the resulting file. The file will be created by the utility.

pdfunite pdf1.pdf pdf2.pdf pdf-result.pdf 

Now you can see that there is a new large file created using the given input pdf files. 

Extract certain pages from a PDF file

I am using the 'pdfseparate' utility for separating the pages out of a large pdf into a small one.


 

In this example, I have a large pdf file called 'pdf-source-file.pdf' and I am extracting the pages 2 to 5 into a new pdf file called 'extracted-pages.pdf'.

the arguments passed to the utility are -f that specifies the first page to extract and -l that specifies the last page to extract. So, all the pages including 2 and 5 are extracted. If you want to extract only one page, provide that page number for both -f and -l parameters.


Foot note: To extract one or more pages, you can use the print as pdf optipn and select only the required pages to print. Make to sure t print in colour so that a colour copy of the required pages is created as a resulting pdf file.😁

Comments

Popular posts from this blog

Java Keystore - Certificate management

 Java Keystore - Certificate Management Dealing with the Java keystore is not new for the software developers working with Java. But many a times, developers who work with several other technology stack come across the necessity of dealing with java keystoe(jks). A simple, easy way to deal with it is given below. The software The software I am working with is KeyStore Explorer.  This software can be used on Windows, Linux and MacOS. Installable can be downloaded separately. If you are fan of portable apps, you can download the zip version that will work with all the operating systems. This software can be downloaded from the link below  https://keystore-explorer.org/downloads.html Setup Install as per your operating system. For portable version, simply unzip to the desired folder. The Keystore explorer needs a JRE to run. If your laptop has a pre-installed JRE, please make sure the JAVA_HOME environment variable is set. If you already have a portable JRE, you can copy ...

CR-2032 Batteries- Where are they used

 Batteries, CR2032. What is CR2032 (also written CR-2032)? CR2032 is a non rechargeable 3V lithium battery which is used in many electronic devices. It resembles a coin and hence it is also called a coin cell or coin battery.  A Panasonic CR2032 cell What are it's main applications and lifetime in each cases? 1. Car keyfobs . (Lifetime - Normally works for several years, 3-8 years) 2. Apple Airtag. (Lifetime - 1 to 1.5 years) 3. Temperature and humidity sensors. (Around 1-2 years) 4. Toys.(Will run out very soon 😜) 5. Smart home sensors. 6. Calculators. 7. Remote controls for garages etc.

Viewing visio files using draw.io

 Viewing visio files using draw.io. If you do not have Microsoft visio installed on your windows machine, you still can open and view visio diagram files. We can make use of draw.io . The draw.io web app does not support viewing the visio files. You can download the draw.io windows app from their website. You can visit https://www.drawio.com/ and download the application. Once you install it , you can import a visio file into it like any other diagram/image file. I hope this info is helpful in some situations.