Logo white

OpenSystemsDevelopment / qpdf

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Commits 4,691
  • Compare
  • Branches 1
  • Tags 0
  • qpdf
08 Aug, 2025
1 commit
  • Allow null `callbacks` in content stream handling ...
    c47e332d
    Introduce null checks for `callbacks` in `QPDFObjectHandle` to allow content streams to be parsed without ParserCallbacks. Update `QPDFJob` to pass `nullptr` instead of `DiscardContents` for parsing.
    m-holger authored
    2025-08-08 13:25:55 +0100  
    Browse Code »

07 Aug, 2025
2 commits
  • Merge pull request #1511 from m-holger/i1235 ...
    58ed11f2
    Disallow `--deterministic-id` with encrypted output and improve error…
    m-holger authored
    2025-08-07 19:39:06 +0100  
    Browse Code »
  • Disallow `--deterministic-id` with encrypted output and improve error handling f… ...
    b46d4b98
    …or deterministic ID generation (fixes #1235).
    m-holger authored
    2025-08-07 19:09:16 +0100  
    Browse Code »

04 Aug, 2025
4 commits
  • Merge pull request #1509 from m-holger/vpv ...
    e68d5392
    Refactor `validatePDFVersion` and `findHeader`: simplify logic, impro…
    m-holger authored
    2025-08-04 11:35:10 +0100  
    Browse Code »
  • Refactor `validatePDFVersion` and `findHeader`: simplify logic, improve readabil… ...
    727d14cb
    …ity, and replace deprecated API usage.
    m-holger authored
    2025-08-04 10:50:45 +0100  
    Browse Code »
  • Merge pull request #1508 from m-holger/chpo ...
    7a23bfb6
    Refactor `QPDF::calculateHPageOffset`: simplify loops with range-base…
    m-holger authored
    2025-08-04 10:32:22 +0100  
    Browse Code »
  • Refactor `QPDF::calculateHPageOffset`: simplify loops with range-based for, repl… ...
    0b2a75ab
    …ace manual index handling, revise min/max initialization to use `std::numeric_limits`, and optimize shared identifier assignments.
    m-holger authored
    2025-08-04 01:34:28 +0100  
    Browse Code »

03 Aug, 2025
5 commits
  • Merge pull request #1507 from m-holger/ouser ...
    b1647555
    Refactor QPDF::ObjUser
    m-holger authored
    2025-08-03 22:44:30 +0100  
    Browse Code »
  • In `ObjUser` and in linearization calculations refactor to use `size_t` for page… ...
    e8ade683
    … numbers and related variables, replacing `int`, to enhance consistency and avoid unnecessary checked conversions.
    m-holger authored
    2025-08-03 22:18:46 +0100  
    Browse Code »
  • Refactor `ObjUser` class: remove unused `ou_bad` type, delete default constructo… ...
    d11d75a9
    …r,  and revise enum initialization. Clean up unused error handling in linearization logic.
    m-holger authored
    2025-08-03 22:17:29 +0100  
    Browse Code »
  • Merge pull request #1505 from m-holger/writer ...
    7eda035b
    Update `unparseChild` and `unparseObject` in `QPDFWriter` to use `siz…
    m-holger authored
    2025-08-03 12:25:37 +0100  
    Browse Code »
  • Update `unparseChild` and `unparseObject` in `QPDFWriter` to use `size_t` for `l… ...
    6020af9f
    …evel` and add `const&` to `child` parameter.
    m-holger authored
    2025-08-03 11:51:21 +0100  
    Browse Code »

02 Aug, 2025
4 commits
  • Merge pull request #1504 from m-holger/fuzz ...
    9cb220a4
    Improve linearization logic to handle invalid thumbnails gracefully a…
    m-holger authored
    2025-08-02 16:01:09 +0100  
    Browse Code »
  • Improve linearization logic to handle invalid thumbnails gracefully and fix thum… ...
    3471c7c7
    …bnail processing loop to ensure consistency.
    m-holger authored
    2025-08-02 14:48:13 +0100  
    Browse Code »
  • Merge pull request #1503 from m-holger/fuzz ...
    d3dacd1e
    Fix linearization logic to conditionally add outlines object only if …
    m-holger authored
    2025-08-02 12:46:59 +0100  
    Browse Code »
  • Fix linearization logic to conditionally add outlines object only if erased, ens… ...
    4ebe5452
    …uring robustness against damaged PDFs.
    m-holger authored
    2025-08-02 12:18:00 +0100  
    Browse Code »

31 Jul, 2025
2 commits
  • Merge pull request #1501 from m-holger/fuzz ...
    a095549e
    Enhance `QPDF_objects` to ignore excessively large object stream IDs …
    m-holger authored
    2025-07-31 18:57:38 +0100  
    Browse Code »
  • Enhance `QPDF_objects` to ignore excessively large object stream IDs in xref str… ...
    4b70fc3c
    …eams, improving robustness against damaged PDFs.
    m-holger authored
    2025-07-31 18:30:08 +0100  
    Browse Code »

27 Jul, 2025
5 commits
  • Merge pull request #1499 from m-holger/base64 ...
    05469083
    Refactor Pl_Base64
    m-holger authored
    2025-07-27 18:19:17 +0100  
    Browse Code »
  • Merge pull request #1500 from m-holger/fuzz ...
    402c6989
    Enhance `QPDFParser` sanity checks after xref recovery to include par…
    m-holger authored
    2025-07-27 18:08:43 +0100  
    Browse Code »
  • Refactor `Pl_Base64` to add static `encode` and `decode` methods, streamline enc… ...
    92a8c888
    …oding/decoding logic, and simplify usage in `JSON_writer` and `QPDF_json`.
    m-holger authored
    2025-07-27 17:43:39 +0100  
    Browse Code »
  • Refactor `Pl_Base64` to use `std::string` for output buffering and `std::string_… ...
    05e52843
    …view` for encoding/decoding, improving memory efficiency and simplifying buffer management
    m-holger authored
    2025-07-27 17:43:29 +0100  
    Browse Code »
  • Enhance `QPDFParser` sanity checks after xref recovery to include parsing of content streams.
    413c8c0f
    m-holger authored
    2025-07-27 17:35:48 +0100  
    Browse Code »

26 Jul, 2025
2 commits
  • Refactor `Pl_Base64` to use `std::string` for input buffering, simplifying `writ… ...
    a686cc5f
    …e` and `finish` logic
    m-holger authored
    2025-07-26 15:24:59 +0100  
    Browse Code »
  • Refactor `QPDF_json` stream reading to simplify and improve performance by repla… ...
    db7251f1
    …cing buffered reads with direct data extraction from `InputSource`.
    m-holger authored
    2025-07-26 14:37:51 +0100  
    Browse Code »

25 Jul, 2025
2 commits
  • Merge pull request #1498 from m-holger/fuzz ...
    b73f6d79
    Refactor `NNTree` to encapsulate warning and error handling
    m-holger authored
    2025-07-25 00:59:59 +0100  
    Browse Code »
  • Refactor `NNTree` to encapsulate warning and error handling into `NNTreeImpl`, a… ...
    9f9f01d5
    …dding error counting and leveraging `reconstructed_xref` for improved robustness, limiting the acceptable number of errors for damaged files.
    m-holger authored
    2025-07-25 00:34:41 +0100  
    Browse Code »

24 Jul, 2025
2 commits
  • Merge pull request #1497 from m-holger/fuzz ...
    d285dab8
    Add check for shared appearance stream in QPDFFormFieldObjectHelper
    m-holger authored
    2025-07-24 15:33:41 +0100  
    Browse Code »
  • Add check for shared appearance stream in QPDFFormFieldObjectHelper::generateTextAppearance ...
    78db34d2
    Ensure an appearance stream is not shared  before generating text appearances, improving error handling and data integrity.
    m-holger authored
    2025-07-24 15:04:39 +0100  
    Browse Code »

20 Jul, 2025
9 commits
  • Merge pull request #1496 from m-holger/obis ...
    ca80db6f
    Refactor is::OffsetBuffer and BufferInputSource
    m-holger authored
    2025-07-20 20:35:20 +0100  
    Browse Code »
  • In FUTURE, refactor `BufferInputSource` to use is::OffsetBuffer.
    799080b0
    m-holger authored
    2025-07-20 17:55:46 +0100  
    Browse Code »
  • Refactor `QPDF_Stream` and related classes to replace `Buffer` usage with `std::… ...
    8a6b3582
    …string`, improving performance, simplifying stream data handling, and reducing dependency on `BufferInputSource`.
    m-holger authored
    2025-07-20 16:00:17 +0100  
    Browse Code »
  • Refactor `QPDFObjectHandle` and related classes to replace `Buffer` usage with `… ...
    c436f035
    …std::string_view`, improving performance and code clarity.
    m-holger authored
    2025-07-20 15:07:24 +0100  
    Browse Code »
  • Refactor `is::OffsetBuffer` to introduce overloaded constructor, reducing redund… ...
    31073ea3
    …ancy and improving initialization consistency.
    m-holger authored
    2025-07-20 13:44:10 +0100  
    Browse Code »
  • Refactor `is::OffsetBuffer` to rename `cur_offset` to `pos` and consolidate redu… ...
    7e7cede8
    …ndant methods for improved code clarity.
    m-holger authored
    2025-07-20 13:38:53 +0100  
    Browse Code »
  • Refactor `is::OffsetBuffer` to use `std::string_view` instead of `Buffer` simplifying code.
    0c9b6fe9
    m-holger authored
    2025-07-20 13:28:04 +0100  
    Browse Code »
  • Refactor `is::OffsetBuffer` to remove dependency on `BufferInputSource`, improvi… ...
    81cb7962
    …ng encapsulation and maintainability.
    m-holger authored
    2025-07-20 13:27:23 +0100  
    Browse Code »
  • Merge pull request #1495 from m-holger/writer ...
    3a055d5b
    Simplify QPDFWriter pipeline management
    m-holger authored
    2025-07-20 11:38:41 +0100  
    Browse Code »

19 Jul, 2025
2 commits
  • Refactor `Pl_AES_PDF` and `Pl_RC4` constructors to simplify key handling ...
    9faffb74
    Replaced raw key pointer and length parameters with a `std::string` in `Pl_AES_PDF` and `Pl_RC4` constructors for improved safety and clarity. Updated all usage sites accordingly, reducing reliance on manual memory management and redundant conversions.
    m-holger authored
    2025-07-19 19:43:33 +0100  
    Browse Code »
  • Refactor `QPDFWriter` to replace `pl::Link` with direct use of `Pipeline` for im… ...
    4278a557
    …proved clarity and reduced indirection in pipeline management.
    m-holger authored
    2025-07-19 18:40:59 +0100  
    Browse Code »