1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 09:47:35 +00:00

LibPDF: Add a bitmap renderer

This commit adds the Renderer class, which is responsible for rendering
a page into a Gfx::Bitmap. There are many improvements to make here,
but this is a great start!
This commit is contained in:
Matthew Olsson 2021-05-10 10:50:39 -07:00 committed by Andreas Kling
parent d6a9b41bac
commit 4479c1bff0
4 changed files with 655 additions and 4 deletions

View file

@ -3,8 +3,9 @@ set(SOURCES
Document.cpp
Object.cpp
Parser.cpp
Renderer.cpp
Value.cpp
)
serenity_lib(LibPDF pdf)
target_link_libraries(LibPDF LibC LibCore)
target_link_libraries(LibPDF LibC LibCore LibIPC LibGfx)