New:Microsoft Teams Notifications Are Now Available in Socket.Learn more
Get Started

@firecrawl/pdf-inspector

Package Overview
Dependencies
Maintainers
6
Versions
61
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@firecrawl/pdf-inspector

Fast PDF classification and text extraction. Detect text-based vs scanned PDFs, extract text by region with quality checks. Native Rust performance via napi-rs.

latest
Source
npmnpm
Version
1.20.0
Version published
Weekly downloads
76K
34.19%
Maintainers
6
Weekly downloads
 
Created
Source

PDF Inspector

Fast PDF classification and region-based text extraction for Node.js/Bun. Native Rust performance via napi-rs.

Built by Firecrawl for hybrid OCR pipelines — extract text from PDF structure where possible, fall back to OCR only when needed.

Features

  • Smart classification — text-based / scanned / image-based / mixed in ~10–50ms, with a confidence score and per-page OCR routing.
  • Region-based extraction — pull text from bounding boxes with per-region quality checks (needsOcr).
  • Layout-aware — multi-column reading order, position and font info per text item, RTL support.
  • Robust text decoding — CID/Type0 fonts via ToUnicode CMaps, plus automatic flagging of broken encodings so callers can fall back to OCR.
  • Selective OCRAuto routes only pages rejected by native extraction and returns source/model provenance plus hosted-fallback recommendations.
  • External artifacts — the native package embeds no OCR models, PDFium, or ONNX Runtime; clean Auto requests never load or download them.

Benchmark

opendataloader-bench corpus (200 PDFs), local engines without model-based PDF parsing; OCR disabled. Scores 0–1, higher is better:

EngineOverallReading orderTables (TEDS)HeadingsSpeed
pdf-inspector0.8750.9150.8140.7880.470s
liteparse0.8730.9130.6930.8110.750s
opendataloader0.8310.9020.4890.7392.569s
pymupdf4llm0.7350.8860.4010.42417.117s
markitdown0.5890.8440.2730.00016.165s

Refreshed July 31, 2026, on Apple M4 Pro; speed is the median of five complete corpus runs after an excluded warm-up. Full methodology and versions are in the repo README, with raw timings and artifacts in the results branch.

Install

npm install @firecrawl/pdf-inspector
# or
bun add @firecrawl/pdf-inspector

Prebuilt binaries for Linux x64/ARM64 (glibc and musl/Alpine), macOS ARM64, and Windows x64 — npm installs only the one matching your platform. No Rust toolchain needed.

OCR calls that route work require compatible PDFium and ONNX Runtime shared libraries. Set PDFIUM_LIB_PATH and ORT_DYLIB_PATH when they are not on the platform library search path. The pinned OCR model set is downloaded and checksum-verified on the first routed page; use offline: true with a warm cache or modelDirectory to prohibit network access. See the OCR runtime setup guide for pinned downloads, supported platforms, and hosted-fallback behavior.

API

processPdfWithOcr(buffer: Buffer, options?: OcrOptions): Promise<OcrPdfResult>

Run native extraction first and OCR only the pages selected by its quality signals. The default mode is Auto; Off returns the same detailed result shape without external runtime work, and Force OCRs every selected page. The work runs on the libuv thread pool and never blocks Node's event loop.

import { OcrMode, processPdfWithOcr } from '@firecrawl/pdf-inspector'

const result = await processPdfWithOcr(pdf, {
  mode: OcrMode.Auto,
  pageNumbers: [1, 3], // 1-indexed
})

for (const page of result.pages) {
  console.log(page.pageNumber, page.provenance.source)
}
console.log(result.pagesRoutedToOcr)
console.log(result.pagesRecommendingHosted)

For offline deployments, pass modelDirectory and offline: true. Other controls include dpi, minimumConfidence, hostedRecommendationConfidence, and password.

classifyPdf(buffer: Buffer): PdfClassification

Classify a PDF as TextBased, Scanned, Mixed, or ImageBased (~10-50ms). Returns which pages need OCR.

import { classifyPdf } from '@firecrawl/pdf-inspector'
import { readFileSync } from 'fs'

const pdf = readFileSync('document.pdf')
const result = classifyPdf(pdf)

console.log(result.pdfType)        // "TextBased" | "Scanned" | "Mixed" | "ImageBased"
console.log(result.pageCount)      // 42
console.log(result.pagesNeedingOcr) // [5, 12, 15] (0-indexed)
console.log(result.confidence)     // 0.875

extractTextWithPositions(buffer: Buffer, pages?: number[], options?: FrameOptions): TextItem[]

Every text item (plus image placeholders, links and form fields) with its font and position. x/y are PDF points relative to the page's visible page box (CropBox ∩ MediaBox, else the MediaBox), origin at the box's lower-left corner with y growing upward. extractTextInRegions reads its regions relative to the same box but from its top-left corner with y growing downward, so flip with the box height: boxHeight - y. For text items y is the baseline and height the font size, so [x, boxHeight - y - height, x + width, boxHeight - y] covers the glyph band above the baseline (descenders fall below it); for image, link and form-field items y is the rect bottom and that box is exact. Pages whose CropBox equals the MediaBox at (0, 0) are unaffected.

By default the page /Rotate is not applied and a page whose text is predominantly rotated is turned so that text reads left-to-right (this is the "sheet" frame; extractTextWithPositionsAndRotations reports which pages were turned). Pass { frame: "display" } to get every item in the rendered page's frame instead — the visible page box turned clockwise by the page's inheritable /Rotate, lower-left origin, y up, with the turn of a rotated page undone — so x/y/width/height and rotation describe the item as a renderer draws it. Pages with /Rotate 0 whose text is not predominantly rotated are identical in both frames.

legacySymbolRewrite: true marks items whose decoded text includes a character changed by legacy symbol cleanup. Merged items retain this evidence from either source, and split items conservatively inherit it. The field is omitted when that cleanup did not change a character; absence is not a general guarantee of decoding accuracy. Consumers correcting other text can use the marker to avoid treating a rewritten symbol as an authoritative Unicode value.

import { extractTextWithPositions } from '@firecrawl/pdf-inspector'

for (const item of extractTextWithPositions(pdf, [1])) { // pages are 1-indexed
  console.log(item.page, item.text, item.x, item.y, item.fontSize)
}

// Boxes as a renderer draws the page (`/Rotate` applied)
const rendered = extractTextWithPositions(pdf, undefined, { frame: 'display' })

extractTextWithPositionsAndRotations(buffer: Buffer, pages?: number[], options?: FrameOptions): PositionedText

extractTextWithPositions plus pageRotations, one { page, rotation: 'ccw' | 'cw' } entry per page whose text was predominantly rotated and therefore turned in the "sheet" frame. With { frame: "display" } the items are in the rendered page's frame and the entries only report which pages were turned.

extractTextInRegions(buffer: Buffer, pageRegions: PageRegions[], options?: FrameOptions): PageRegionTexts[]

Extract text within bounding-box regions from a PDF. Designed for hybrid OCR pipelines where a layout model detects regions in rendered page images, and this function extracts text from the PDF structure for text-based pages — skipping GPU OCR.

Region bboxes are [x1, y1, x2, y2] in PDF points with a top-left origin, relative to the visible page box. By default they are read in the "sheet" frame: the box as laid out in the content stream, /Rotate not applied, the frame extractTextWithPositions reports items in flipped to a top-left origin. The sheet frame matches a rendered page image only when both hold: the page has /Rotate 0, and its text is not predominantly rotated. A page whose text is predominantly rotated is turned in the sheet frame so that text reads left-to-right (extractTextWithPositionsAndRotations reports which pages were turned), so its sheet-frame bboxes do not match the rendered image even with /Rotate 0. Pass { frame: "display" } to give bboxes on the rendered page (the visible box turned clockwise by the page's inheritable /Rotate; the page-level turn of a predominantly rotated page is undone first, while individual runs keep their own rotation), as a layout model working on page images reports them, whatever the page's /Rotate or text direction. extractTablesInRegions takes the same option.

Each region result includes a needsOcr flag that signals unreliable extraction (empty text, GID-encoded fonts, garbage text, encoding issues). When the cause is a suspected garbled text layer, ocrReason is set to "suspected_garbled_text".

import { extractTextInRegions } from '@firecrawl/pdf-inspector'

const result = extractTextInRegions(pdf, [
  {
    page: 0, // 0-indexed
    regions: [
      [0, 0, 300, 400],    // [x1, y1, x2, y2] in PDF points, top-left origin of the visible page box (CropBox)
      [300, 0, 612, 400],
    ]
  }
])

// The same call with bboxes taken from a rendered page image
const onRendered = extractTextInRegions(
  pdf,
  [{ page: 0, regions: [[0, 0, 300, 400]] }],
  { frame: 'display' },
)

for (const region of result[0].regions) {
  if (region.needsOcr) {
    // Unreliable text — send this region to OCR instead
  } else {
    console.log(region.text) // Extracted text in reading order
  }
}

Async variants

processPdf, classifyPdf, and extractPagesMarkdown are synchronous and parse on the calling thread — in Node, that's the event loop. For a one-off call in a script that's fine, but in a server a large document can hold the loop for tens to hundreds of milliseconds.

processPdfAsync, classifyPdfAsync, and extractPagesMarkdownAsync take the same arguments and produce the same results, but run the parse on the libuv thread pool and return a promise, keeping the event loop free. The input buffer is copied before the call returns, so it's safe to reuse or mutate immediately:

import { classifyPdfAsync, extractPagesMarkdownAsync } from '@firecrawl/pdf-inspector'

const classification = await classifyPdfAsync(pdf)
if (classification.pdfType === 'TextBased') {
  const { pages } = await extractPagesMarkdownAsync(pdf)
  // ...
}

Types

interface PdfClassification {
  pdfType: string          // "TextBased" | "Scanned" | "Mixed" | "ImageBased"
  pageCount: number
  pagesNeedingOcr: number[] // 0-indexed page numbers
  confidence: number        // 0.0 - 1.0
}

interface PageRegions {
  page: number              // 0-indexed
  regions: number[][]       // [[x1, y1, x2, y2], ...] in PDF points, top-left origin of the visible page box
                            // (sheet frame by default; the rendered page with { frame: "display" })
}

interface FrameOptions {
  frame?: "sheet" | "display" // coordinate frame of items and region bboxes; "sheet" by default
}

interface PositionedText {
  items: TextItem[]            // as returned by extractTextWithPositions
  pageRotations: PageRotation[] // one entry per page whose text was predominantly rotated
}

interface PageRotation {
  page: number              // 1-indexed, matching TextItem.page
  rotation: string          // "ccw" | "cw": how the page was turned in the "sheet" frame
}

interface PageRegionTexts {
  page: number
  regions: RegionText[]
}

interface RegionText {
  text: string
  needsOcr: boolean         // true when text is unreliable
  ocrReason?: string        // "suspected_garbled_text" when known
}

interface OcrPdfResult {
  markdown: string
  pages: OcrPageResult[]              // 1-indexed pages + provenance
  pageCount: number
  pagesRecommendedForOcr: number[]
  pagesRoutedToOcr: number[]
  pagesRecommendingHosted: number[]
  ocrReasonsByPage: PageOcrReasons[]
  pagesWithTables: number[]
  pagesWithColumns: number[]
  isComplex: boolean
  processingTimeMs: number
  renderTimeMs: number
  ocrTimeMs: number
}

Platforms

Prebuilt binaries ship as platform-specific packages installed automatically via optionalDependencies:

PlatformArchitecturePackage
Linuxx64 (glibc)@firecrawl/pdf-inspector-linux-x64-gnu
Linuxx64 (musl/Alpine)@firecrawl/pdf-inspector-linux-x64-musl
LinuxARM64 (glibc)@firecrawl/pdf-inspector-linux-arm64-gnu
LinuxARM64 (musl/Alpine)@firecrawl/pdf-inspector-linux-arm64-musl
macOSARM64@firecrawl/pdf-inspector-darwin-arm64
Windowsx64@firecrawl/pdf-inspector-win32-x64-msvc

License

MIT

Keywords

pdf

FAQs

Package last updated on 15 Sep 2026

Related posts