Skip to content
DevToolKit

PDF to Greyscale Converter

Convert color PDF documents to greyscale for printing, ink savings, and archival. Renders each page at configurable DPI, applies luminance-weighted desaturation, and rebuilds the PDF — entirely in your browser.

pdf

Drop your PDF here, or click to browse

Files are processed entirely in your browser — never uploaded

Processed locally
Was this tool helpful?

How to Use

Convert your color PDF to greyscale in four steps:

  1. Upload your PDF — Drag and drop the file into the dropzone or click to browse your device. The tool reads the document locally and displays the page count and file size. No data is transmitted over the network.
  2. Choose resolution — Select a DPI level: 72 for lightweight screen viewing and email attachments, 150 for general-purpose printing and on-screen reading, or 300 for professional print output where text clarity is critical. Higher DPI produces sharper pages but larger files.
  3. Adjust JPEG quality — The quality slider (50-100%) controls the compression of each greyscale page image. 85% is a strong default that balances visual fidelity with file size. Lower values reduce size further at the cost of subtle compression artifacts around text edges.
  4. Click "Convert" and download — The tool renders each page, applies the greyscale transformation, and assembles the result into a new PDF. A progress indicator tracks page-by-page processing. Once complete, review the output file size and click download.

The entire pipeline runs in your browser using PDF.js for rendering and pdf-lib for output assembly. Your PDF is never uploaded to any server, making the tool safe for contracts, financial statements, medical records, and other confidential documents.

About This Tool

Greyscale conversion removes chrominance information from an image while preserving luminance — the perceived brightness of each pixel. This tool uses the ITU-R BT.709 luminance formula, the same standard used in HDTV broadcasting: grey = 0.2126 × R + 0.7152 × G + 0.0722 × B. The unequal weighting reflects human visual perception — the eye is most sensitive to green, moderately sensitive to red, and least sensitive to blue. A naive average of the three channels would produce flat, washed-out output where reds and greens become indistinguishable.

Because PDF pages can contain a mix of vector text, embedded fonts, raster images, gradients, transparency layers, and spot colors, there is no reliable way to desaturate a PDF by editing its internal content streams. A PDF "color" is defined at dozens of levels — page-level color spaces, inline image color data, font rendering modes, blend modes, and color management profiles. The only approach that guarantees complete and consistent desaturation is rasterization: rendering the page to a bitmap, transforming each pixel to greyscale, and embedding the result back into a new PDF.

The resolution parameter controls the pixel density of each rendered page. PDF content is defined in a coordinate system of 72 points per inch. A US Letter page (8.5 × 11 inches) produces a 612 × 792 pixel image at 72 DPI, 1275 × 1650 pixels at 150 DPI, and 2550 × 3300 pixels at 300 DPI. Memory consumption scales quadratically with DPI — doubling resolution quadruples the pixel count. This tool processes pages sequentially, releasing each canvas after encoding, to keep peak memory usage manageable even for documents with hundreds of pages.

After greyscale conversion, each page image is JPEG-encoded at your chosen quality level and embedded into the output PDF using pdf-lib. JPEG compression works especially well on greyscale data because there is no chroma subsampling step — each 8×8 DCT block operates on a single luminance channel rather than three, reducing artifacts and improving compression efficiency. The output PDF preserves the original page dimensions in points, so it prints at the correct physical size on any printer.

Like the related Rasterize PDF tool, greyscale conversion produces image-based pages. Text is no longer selectable, searchable, or editable. If you need to preserve text selectability, consider printing to PDF using your operating system's greyscale print option instead. For workflows that require pixel-level transformation — such as guaranteed color removal from embedded images and vector graphics — this rasterization-based approach is the most reliable method available.

Why Use This Tool

Converting PDFs to greyscale serves practical needs across printing, archival, and professional workflows:

  • Ink and toner savings — Printing greyscale documents uses only black toner instead of four CMYK cartridges. For organizations that print thousands of pages monthly — legal offices, universities, government agencies — the cost reduction is substantial. A single color laser cartridge set can cost 3-5x more than a black-only replacement.
  • Submission requirements — Many court filings, patent applications, and academic journal submissions require greyscale or black-and-white documents. Converting before submission ensures compliance without manually editing colors in the source document, which may not always be available.
  • Archival standardization — Long-term document archives often standardize on greyscale to reduce storage costs and ensure consistent reproduction. Greyscale PDFs typically compress more efficiently than color equivalents, producing smaller files that are cheaper to store and faster to transmit.
  • Accessibility improvements — Some users with color vision deficiency find greyscale documents easier to read because color-coded distinctions (red vs. green, blue vs. purple) are replaced by brightness differences that are universally perceptible. Greyscale also works better on e-ink displays.
  • Fax and photocopy preparation — Despite the digital age, many legal and medical workflows still rely on fax transmission and physical photocopies. Pre-converting to greyscale ensures the document looks correct on monochrome fax machines and copiers, avoiding unexpected color-to-grey mapping by the hardware.

Processing PDFs locally is especially important for greyscale conversion workflows. The documents most commonly needing conversion — legal filings, financial reports, medical records, patent applications — contain sensitive information that must never leave your device. This tool guarantees zero network transmission. For additional post-processing, combine with PDF Compress to further reduce file size, or use PDF Split to convert only specific page ranges.

FAQ

How does the greyscale conversion work?
Each PDF page is rendered to a canvas at your chosen DPI. The tool reads every pixel and applies the ITU-R BT.709 luminance formula: grey = 0.2126×R + 0.7152×G + 0.0722×B. This perceptually weighted formula produces natural-looking greyscale that preserves contrast between colors. The greyscale canvas is then exported as a JPEG image and embedded into a new PDF page.
What DPI should I use?
150 DPI is a good balance of quality and file size for on-screen viewing and standard printing. 300 DPI is recommended for professional printing where crisp text matters. 72 DPI produces the smallest files suitable for email or quick previews. Higher DPI means larger output files — 300 DPI produces roughly 4x the data of 150 DPI.
Does this preserve text selectability?
No. This tool rasterizes each page into a pixel image before desaturating, so the output PDF contains image-based pages rather than selectable text. This is the only reliable way to guarantee complete color removal from all PDF elements including embedded images, vector graphics, and transparency effects.
Can I convert specific pages instead of the entire document?
Currently the tool converts all pages in the PDF. For selective conversion, split the PDF first using the PDF Split tool, convert the pages you need, then merge them back together with PDF Merge.
Is my PDF uploaded to a server?
No. The entire conversion runs locally in your browser using pdfjs-dist for rendering and pdf-lib for output assembly. Your document never leaves your device.