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

LibPDF: Move code to compute full page contents into Page

Pure code move, no behavior change.
This commit is contained in:
Nico Weber 2023-07-12 09:27:26 -04:00 committed by Tim Flynn
parent f4f8a6a1bf
commit 69c965b987
4 changed files with 41 additions and 22 deletions

View file

@ -28,6 +28,8 @@ struct Page {
Rectangle crop_box;
float user_unit;
int rotate;
PDFErrorOr<ByteBuffer> page_contents(Document&) const;
};
}