Why a PDF page usually isn't made of pixels
Text and shapes in a typical PDF are stored as vector instructions; draw this letterform at this size at this position, stroke this line, fill this shape; resolution-independent descriptions that a PDF viewer turns into pixels only at the moment it displays or prints the page. There's no fixed grid of colored dots to loop over and recolor, the way there is in a JPEG or PNG. A color filter, by definition, needs to touch individual pixels; grayscale needs a pixel's red/green/blue values to compute one gray value, sepia needs those same values to compute a tinted replacement; so it needs pixels to exist first.
Rasterization turns the page into an image
The tool renders each page much as a PDF viewer does, then captures that rendering as a bitmap. Pixel-based grayscale, sepia or inversion can now be applied. Finally, the filtered bitmap is placed on a new PDF page with the original page dimensions.
Selectable text becomes part of the image
After rasterization, letters are pixels rather than text objects. Search, selection and copy operations no longer work on that page unless OCR adds a separate text layer. This is an expected consequence of applying a pixel-level effect, not an error in the exported file.
Resolution controls sharpness and file size
The rendered resolution determines how sharp the new page looks. Too few pixels can make small type blurry, especially in print; an unnecessarily large bitmap increases file size with little visible benefit. A moderate high-resolution render is usually the sensible compromise, but the best choice depends on page size, typography and how the PDF will be used.
What to expect from the result
The output PDF can retain the original page dimensions and layout, but each page now contains one flat image instead of separate text and vector elements.
JPEG can keep full-page photographic images smaller than lossless PNG, although it may introduce compression artifacts around text and sharp edges. The right format and quality setting depend on the page content.
A general pixel-level filter cannot operate on arbitrary PDF content without first rendering it. Targeted edits to known vector elements may avoid rasterization, but they are a different operation.
Apply a color filter to a PDF
Orisod’s PDF Color Filters tool applies black and white, sepia or inverted effects to every page in your browser. Preview the result and remember that the exported pages are rasterized.
Apply a PDF color filter →A PDF color filter is therefore a render, recolor and rebuild process. That explains both the visual result and the loss of native text behavior. If searchability matters, plan to run OCR afterward and inspect its accuracy.