| 15 | } |
| 16 | |
| 17 | struct ImageIssue |
| 18 | { |
| 19 | std::string pdf_path; |
| 20 | int page_number; // 0-based internally, printed as 1-based |
| 21 | std::size_t image_index; // index within page_images |
| 22 | std::string xobject_key; |
| 23 | bool raw_null; |
| 24 | bool decoded_null; |
| 25 | bool yellow_box; // renderer would draw a yellow placeholder |
| 26 | std::string rendered_page_file; // path to rendered page image, if render_dir was given |
| 27 | }; |
| 28 | |
| 29 | // ----------------------------------------------------------------- |
| 30 | // Lightweight inspector: mirrors the exact renderer condition for a |
nothing calls this directly
no outgoing calls
no test coverage detected