Skip to content

Evaluation procedure

Render and verify your first PDF

Install NextPDF Core with Composer. Render hello.pdf. Check the file with your own tools. The free 14-day trial adds the current Enterprise feature set for evaluation.

Procedure index

Five steps from install to evidence

Follow the sequence once. Keep hello.pdf as the input for your own inspection and validation workflow.

  1. Install NextPDF Core

    Add the Apache-2.0 NextPDF Core package with Composer.

  2. Render the file

    Run one PHP script to write hello.pdf.

  3. Validate the output

    Inspect the file, then check its structure with your local tools.

  4. Evaluate NextPDF Enterprise

    Use the free 14-day trial for the current Enterprise feature set.

  5. Continue with the docs

    Take the same file into the guides, API reference, or support path.

Instrument procedure

Run the evaluation

  1. Step 01 · Install

    Install NextPDF Core

    Add the Apache-2.0 package to a PHP project with Composer.

    terminal
    composer require nextpdf/core
  2. Step 02 · Render

    Create hello.php

    Save this script at the project root.

    hello.php
    <?php
    require 'vendor/autoload.php';
    
    use NextPDF\Core\Document;
    
    $doc = Document::createStandalone();
    $doc->addPage();
    $doc->writeHtml('<h1>Hello from NextPDF</h1><p>Your first PDF is ready.</p>');
    $doc->save('hello.pdf');

    Run the script.

    terminal
    php hello.php
  3. Step 03 · Verify

    Validate the output

    Inspect the file metadata with pdfinfo. Check the file structure with qpdf.

    terminal
    pdfinfo hello.pdf
    qpdf --check hello.pdf

    Open hello.pdf in your regular PDF reader. For larger test files, download the PDFs and matching source from the output gallery.

  4. Step 04 · Evaluate

    Start the free 14-day trial

    Evaluate the current NextPDF Enterprise feature set for 14 days. Trial output is watermarked. The trial is scheduled to end after 14 days and is governed by the Trial Agreement.

    Start free trial
  5. Step 05 · Continue

    Move into your workflow

    Use the guides and API reference at nextpdf.dev ↗ (opens in a new tab). Send implementation questions through the contact form.

Complete your purchaseStart your free trial

Use the email you want for your NextPDF account. Paddle uses it to create your account login.

Paddle verifies a valid card for the free trial. US$0 is due today.

The trial ends after 14 days and does not auto-renew. Paddle handles your payment details.