Skip to main content

How to make PDF files.

PDF files or Portable Document Format, is the fie format that has all the elements of a printed documents as an electronic image. You can navigate, print or forward to someone else. They are created using Adobe Acrobat, Acrobat Capture etc.

Using the above mentioned software you can create PDF files of desired elements easily. The desired element can be you school notes, university notes, your resume or anything.

How to make PDF files...?

Making a PDF file is very simple work. You can use MS word or any other platform for forming PDF in PC's. While to make PDF from your smartphone you can use CamScanner (Editor's Choice) , Office Lens etc. These mentioned apps can be downloaded from play store.


  • Making PDF files in PC.
To make PDF files in your PC you need to follow the mentioned steps.

  1. Click the Office button.
    Office button

  2. Move the arrow to Save As button.
    Save As

  3. Select PDF or XPS
    PDF or XPS

  4. Type a name for the file and select PDF in the Save As type drop down.
    Select PDF format

  5. Choose Standard or Minimum Size under Optimize for, depending on whether or not you want better print quality or lower fie size (all up to your needs).
    Standard Optimization

  6. Click Options and set the appropriate print options.
  7. Click OK.
  8. Click Publish to start the PDF creation process.
    Publish

These are the steps you need to use if you are taking help of MS word to make PDFs.

  • Making PDF files in Smart Phone
To make a PDF file in you smartphone though Cam Scanner follow the mentioned steps.

Cam Scanner is a platform that allows user to
  • Generate PDFs using images from either camera or gallery.
  • Generate PDFs in any of the landscape or portrait format.
  • Adjust size of images while forming PDFs.
  • Apply filters to enhance images.
  • Create multiple page PDF's.

Although the quality of the PDF is not all dependent on Cam Scanner. It may be affected by the camera quality of users smart phone or thee lighting conditions in the surrounding.


 So, here are the steps on how to make a PDF file from Cam Scanner.


Welcome Page

  1. When you download the app open it, there you will be asked to provide your phone number or email address. you can skip that if you are in hurry or else just do the registration first.

    Registration
  2. After that you will come to Home Page of the app.

    Home Page
  3. Click on the Camera icon on the bottom-right side of screen.

  4. Capture the image you want in your PDF.
  5. Adjust the size of the image while asked to crop the image.
    Crop the image

  6. Enhance the image by using filters provided.
    Enhancing images

  7. Add more mages if you want to, it can be rather from gallery or another shot from camera.
    Add more images

  8. Now click on PDF icon on top right and your file will be saved.
    Preview the PDF

and, these are the steps to make PDF from smart phone.

Comments

Popular posts from this blog

1235. Maximum Profit in Job Scheduling

Hi everyone, Today's post is little bit intriguing to me as it took me some time to get t the solution. I have been out of practice for a bit so I was not able to do it in the DP. I didn't want to copy the code. Though i understood the code after i checked its solution in the discussions. Anyways, i tried to do it with heap and with some thinking I was able to do it and with my surprise It performed real well. I would like to jump to the solution but first I would like to explain a little bit about heaps so you can get better understanding of the code. A heap is like a special type of list where the smallest (or largest) item is always at the front. Think of it like a priority line at a theme park, where the person with the highest priority goes to the front. There are two types of heaps: Min Heap: The smallest item is at the front. It's like standing in a line where the shortest person is always at the front. Max Heap: The largest item is at the front. It's like stand...

What is a Processor?

Smartphones have been the most important part of our lives. We have seen the evolution of our  handsets. First we saw landlines which were mess of tangled wires then we saw mobile phones which is successor of landlines. They were portable devices from which you can make calls then we witnessed emergence of Smartphones which were  considered as portable computers which also allows us to make calls. What is a Processor? Underneath that touchscreen display there is a full- fledged computer that commands your apps so that they function properly. A processor executes what you want your smartphone to do or in other word you can say processor is brain of computer. there is Exynos, Snapdragon, quad-core octa-core etc. What is a core? It is an element of surprises. They are present inside processor and are responsible for reading the command and executing them. First devices came with single core processor but later on scientists invented more advanced processors such as dual core , So...

Group Anagrams – Python Solution Explained

Problem Overview The Group Anagrams problem is a common challenge in coding interviews and competitive programming. The goal is to group a list of strings such that all anagrams are placed in the same group. Anagrams are words that contain the same characters but in different orders. For example, given the input ["eat", "tea", "tan", "ate", "nat", "bat"] , the expected output is [['eat', 'tea', 'ate'], ['tan', 'nat'], ['bat']] . Approach and Solution In this blog post, we'll discuss an efficient solution using Python's built-in data structures. The provided code uses a dictionary to group the anagrams. Here’s a step-by-step explanation of the approach: Code Breakdown Explanation Initialization: We use defaultdict from the collections module to create a dictionary ( hm ) where each key will map to a list of anagrams. This is useful because it automatically initializes ...