Skip to content

Commit

Permalink
Switch PDF rendering with poppler on by default.
Browse files Browse the repository at this point in the history
  • Loading branch information
hzeller committed Jan 25, 2024
1 parent 661ee21 commit 0634b3e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ option(WITH_VIDEO_DEVICE "Enables reading videos from devices e.g. v4l2 (require
option(WITH_GRAPHICSMAGICK "Enable general image loading with Graphicsmagick. You typically want this." ON)
option(WITH_TURBOJPEG "Optimized JPEG loading. You typically want this." ON)
option(WITH_RSVG "Use librsvg to open SVG images." ON)
option(WITH_POPPLER "Use poppler to render PDFs" OFF)
option(WITH_POPPLER "Use poppler to render PDFs" ON)
option(WITH_STB_IMAGE "Use STB image, a self-contained albeit limited image loading and lower quality. Use if WITH_GRAPHICSMAGICK is not possible and want to limit dependencies. Default on to be used as fallback." ON)
option(WITH_QOI_IMAGE "QOI image format" ON)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,7 @@ compile-time choices:
* **`WITH_POPPLER`** High-quality and faster PDF renderer. Needs poppler
and cairo.
If not compiled-in, will fallback to GraphicsMagick, but that typically
results in lower quality renderings. Currently **OFF** by default.
results in lower quality renderings. Typically want this **ON** (default).
* **`WITH_RSVG`** High-quality SVG renderer. Needs librsvg and cairo.
If not compiled-in, will fallback to GraphicsMagick, but that typically
results in lower quality renderings. Typically want this **ON** (default).
Expand Down

0 comments on commit 0634b3e

Please sign in to comment.