Forum Discussion

WasmWilliam's avatar
WasmWilliam
Iron Contributor
Jul 15, 2026

How do I extract just certain pages from a PDF?

Hey folks.

I'm sitting on a massive PDF file and I only need a few random pages out of it for a report, but I have no clue how to cleanly extract pages from pdf without using some paid subscription service. I've tried copy-pasting, but that breaks the layout, so I'm really hoping there's a built-in Windows trick or a dead-simple free tool that lets me extract pages from pdf just by entering the page numbers I want—bonus points if it works offline and keeps the original quality intact.

Thanks for any tips!

9 Replies

  • OwenLanty's avatar
    OwenLanty
    Brass Contributor

    To extract certain pages from a PDF, save only those pages into a new PDF. On Windows 11 or Windows 10, use PDFgear for free page extraction, Adobe Acrobat Pro for professional controls, or Microsoft Print to PDF for an occasional no-download solution.

    Extract pages without Adobe for free

    PDFgear is a free desktop PDF editor that can extract individual pages, a consecutive range, or several non-adjacent pages.

    • Open the PDF in PDFgear and select the Page tab.
    • Click Extract Pages.
    • In the Range section, choose Custom pages and enter the pages to keep, for example 1,8,9-12. You can also choose Selected pages or All pages.
    • If needed, use Subset to extract only odd or even pages.
    • Under Extract Mode, select Extract pages into one PDF to combine the chosen pages into one new file. Select Extract every page into separate PDFs only when each page needs its own file.
    • Leave Delete selected pages after extraction unchecked to keep the original PDF unchanged.
    • Click OK, choose where to save the extracted PDF, and check the result.

    This method extracts the selected pages as PDF pages instead of re-creating them through printing, so it is more likely to preserve their original quality and document structure.

    Extract pages with Adobe Acrobat Pro

    Adobe Acrobat Pro is the paid option for users who need structured page extraction and more advanced document controls.

    • Open the PDF in Acrobat Pro, then select All tools > Organize pages.
    • Select the page thumbnails you want to extract. Hold Ctrl to select non-adjacent pages, or select a consecutive range.
    • Under Page options, click the Extract pages icon.
    • Leave Delete pages after extracting unchecked if you want to keep the original PDF unchanged.
    • Select Extract pages as separate files only if each selected page should become its own PDF.
    • Click Extract, then save the new PDF.

    In short, use PDFgear for a free desktop extraction workflow, or Acrobat Pro when you already have the paid software and need more professional page-management controls.

    Extract specific pages on Windows without installing software

    If you only need this occasionally, do not want to download software, and do not mind the new PDF being flattened, you can use the Microsoft Print to PDF virtual printer.

    • Open the PDF in Microsoft Edge or another PDF reader.
    • Press Ctrl+P.
    • Choose Microsoft Print to PDF.
    • Enter the pages you want under the custom page range, such as 1-3, 6, 9-10.
    • Select Print and save the new PDF.
    • Open the saved file to confirm it includes only the pages you selected.

    This method recreates the selected page appearance rather than truly extracting their internal PDF structure. Bookmarks, form fields, links, comments, accessibility tags, and digital signatures may not be retained.

    For sensitive documents, use a local method such as Print to PDF, PDFgear, or Acrobat Pro rather than an online extractor.

  • CameronLewis's avatar
    CameronLewis
    Iron Contributor

    When you extracting pages from PDF. It's worth keeping in mind that the built-in Windows method or a local open-source tool keep your files entirely on your own computer.

  • MateoChen's avatar
    MateoChen
    Iron Contributor

    This is a great script-based method to easily how to extract pdf pages without purchasing paid PDF editing software. It essentially lets you customize page selection logic to split PDF chapters locally via Python code, allowing you to set exact target page indexes and automate batch extraction to generate new segmented PDF documents.

    Usage Guide: Install Python runtime on your computer and run pip install PyPDF2 in Command Prompt to install the library, create a new .py script file and paste the full processing code below, replace "input.pdf" with your source file path and adjust the page index list according to your required pages, then execute the script to export the extracted PDF file.

    from PyPDF2 import PdfReader, PdfWriter
    
    reader = PdfReader("input.pdf")
    writer = PdfWriter()
    
    # Extract pages 5, 12-15, 20
    pages = [4, 11, 12, 13, 14, 19]  # 0-indexed
    for page_num in pages:
        writer.add_page(reader.pages[page_num])
    
    with open("extracted.pdf", "wb") as f:
        writer.write(f)

    This method runs fully offline and swiftly helps you reliably how to extract pdf pages, effectively finishing customized single or batch PDF chapter splitting tasks without uploading files to cloud servers.

    It is particularly useful for advanced users with basic coding skills, recurring mass PDF sorting work, or integrating automatic PDF page extraction functions into local automation scripts.

  • Errpmary's avatar
    Errpmary
    Copper Contributor

    If you're looking for a completely free and lightweight way to extract pages from PDF, Mu PDF's mutool is a solid pick. It's a command-line tool, so it's not super flashy, but it gets the job done fast and without any fuss—and it's totally local, so you don't have to worry about uploading your files anywhere.

    The most straightforward command to extract pages from PDF actually uses the mutool clean subcommand. While mutool extract is for pulling out images and fonts, mutool clean is what you want for pages.

    You'd type something like this in your command prompt:

    bash

    mutool clean -gggg input.pdf output.pdf 1-10,12

    This command saves pages 1 through 10, and also page 12, from your original input.pdf into a new file called output.pdf. The -gggg part just tells the tool to clean up any unused junk from the file so you get a nice, small output.

    A Quick Heads-Up

    • It's Command-Line Only: There's no fancy graphical interface. You'll need to be comfortable typing commands in a terminal (like Command Prompt on Windows). But once you get the hang of it, it's super fast for repeating the same task over and over.
    • A Minor Learning Curve: It can feel a bit intimidating at first, but the commands are very logical once you see a few examples.
    • Useful for More Than Just Extracting: mutool can also do things like clean up messy PDFs, render pages to images, and inspect document info, so it's a pretty powerful little Swiss Army knife.

     

    In short, if you're willing to type a few commands, mutool is a fantastic, zero-cost way to extract pages from PDF on your Windows machine.

  • ArthurDavis's avatar
    ArthurDavis
    Iron Contributor

    PDFtk is a command-line PDF tool that provides a scriptable, local method for how to extract pdf pages. The tool runs entirely offline, requires no file uploads, supports automated batch processing via terminal commands, and offers a lightweight, script-based solution for quickly splitting target PDF chapters without relying on graphical software.

    How to Extract PDF Pages

    1. Download and install the software toolkit from the official website.

    2. Open the Command Prompt and navigate to the folder containing the source PDF file.

    3. Run the command:

    pdftk input.pdf dump_data output bookmarks.txt

    4. Export the bookmarks and view the page numbers corresponding to each chapter.

    5. Copy the desired page range from the generated bookmarks text file.

    6. Execute the extraction command:

    pdftk input.pdf cat 1-15 16-30 31-45 output chapters.pdf.

    7. Check the same directory to retrieve the new split PDF file containing your selected page range.

    It runs quickly, supports script automation, and is suitable for technical users who need to extract PDF pages—especially those who frequently need to split PDF files.

    However, it lacks a graphical user interface, which makes it difficult for users unfamiliar with terminal commands to operate.

  • Samkkinlon's avatar
    Samkkinlon
    Iron Contributor

    Since your question is about how to extract PDF pages using a free tool, let's focus on the open-source browser version. Here's the casual, step-by-step scoop:

    Step 1: Open the Tool

    Go to the GitHub page for dharshan-kumarj/PDFMatrix and launch the tool directly in your browser. The best part? Everything runs locally on your machine—nothing gets uploaded to any server, so your files stay private.

    Step 2: Upload Your PDF

    Once the tool loads, click the button to upload your PDF file. You can also just drag and drop it right into the browser window.

    Step 3: Find the Split Feature

    Look for the "Split PDF" tool in the main menu. This is where you'll learn exactly how to extract PDF pages. You've got a few cool options here:

    • Split by Pages – Type specific page numbers (like 1,3,5-10) to pull out exactly what you want.
    • Split by Ranges – Divide your PDF into custom page ranges for more flexible control.
    • Extract Single Pages – Get each individual page as its own separate PDF file.
    • Split Every N Pages – Automatically split your document into chunks of equal size.

     

    There's even a visual page selection feature with live preview, so you can see exactly which pages you're grabbing before you commit.

    Step 4: Save Your Extracted Pages

    After you've made your selections, just hit the button to process. The tool will generate your new PDF with only the pages you selected, and you can download it right away.

  • BrantGarcia's avatar
    BrantGarcia
    Iron Contributor

    Google Drive is a free cloud storage service that you can use to extract pages from pdf, as well as edit and convert uploaded PDF files through the built-in Google Docs editor.

    It allows you to split PDF files and export specific single or multiple pages in one workflow, but using this page extraction feature requires uploading your original PDF file to cloud servers.First, log into your Google Drive account and upload the target PDF file. Right-click the uploaded PDF and select Open with Google Docs to finish format conversion.

    Open the top File menu and click Print, input the exact page range you want to keep, then choose Save as PDF from the destination options and download the new split file to your local storage.

    Once the download finishes, you can delete the original uploaded PDF from Google Drive to reduce privacy risks.

    This method cannot let you extract pages from pdf without uploading documents online, so it is only suitable for users handling non-confidential public PDF files.

    If you don’t want to install extra desktop PDF software, you can try this method. It involves uploading files to third-party cloud platforms, so you should consider data privacy risks carefully.

  • FabianRomero's avatar
    FabianRomero
    Bronze Contributor

    PDF24 Creator is a desktop PDF tool that offers an intuitive graphical interface, allowing you to extract pages from pdf without having to upload files online or pay a subscription fee. It integrates multiple PDF editing modules and provides a convenient offline solution to split PDF documents and separate required content for your local file editing needs.

    How to Extract Pages from PDF

    Step 1: Download and install the software from the official website.

    Step 2: Launch the main program.

    Step 3: Locate and click the “Extract PDF” feature.

    Step 4: Import the target PDF file into the software's workspace.

    Step 5: Enter the specific page numbers or page range you want to split.

    Finally, confirm the output save path, then click “Save” to generate the new split PDF files.

    Suitable for general users who need to split PDF content locally. However, it is only compatible with the Windows operating system and cannot run on macOS or Linux devices.

    Pros

    • Offline processing, graphical user interface
    • In addition to page extraction, it includes additional PDF tools such as merging, compressing, and converting.

    Cons

    • Supports Windows only
    • The installer includes optional bundled plugins by default.
    • Processing speed slows down significantly when handling large PDF files with thousands of pages.
    • Lacks advanced features, such as batch extraction of pages from multiple PDF documents at once.
  • Dass's avatar
    Dass
    Iron Contributor

    Absolutely! Using "Microsoft Print to PDF" is a clever, completely free workaround to extract pages from a PDF right from your Windows PC . It's actually one of those built-in features that a lot of people overlook.

    The basic idea is that you're "printing" the PDF, but instead of sending it to a physical printer, you're saving a new PDF that only contains the specific pages you want. It’s a handy native trick, and if you want to extract pages from pdf, you don't need to download any extra software .

    Here’s how the process works:

    1. Open your PDF: Right-click your PDF file and choose Open with > Microsoft Edge (or any browser like Chrome works too) .

    2. Open the Print dialog: Press Ctrl + P on your keyboard, or click the Print icon .

    3. Choose the virtual printer: In the printer selection menu, pick Microsoft Print to PDF .

    4. Select the pages you want: In the "Pages" field, type the specific page numbers or range you want. For instance:

       To extract a single page, type 3 .

       To extract a range, type 3-5 .

       To extract multiple pages that aren't consecutive, type 3,5,7 .

    5. Save your new PDF: Click the "Print" button, choose where to save the file, give it a name, and hit "Save" .

    That’s it! This is a surprisingly simple and secure way to extract pages from pdf. It's all done locally on your machine, so you can do it without worrying about uploading your documents to the cloud . The only catch is that for multiple separate files, you'd need to repeat the process page by page, but for a quick one-off extraction, it's perfect.