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
  • ChangeLog
22 Jun, 2018
6 commits
  • With --verbose, give information on processing merge inputs
    6bf47ac6
    Jay Berkenbilt authored
    2018-06-22 16:14:54 -0400  
    Browse File »
  • Add progress reporting for QPDFWriter (fixes #200)
    a433ed24
    Jay Berkenbilt authored
    2018-06-22 16:14:54 -0400  
    Browse File »
  • Add method to get count of objects in QPDF
    2a82f6e1
    Jay Berkenbilt authored
    2018-06-22 15:53:40 -0400  
    Browse File »
  • Use ClosedFileInputSource when merging files (fixes #154)
    99593e0e
    Jay Berkenbilt authored
    2018-06-22 12:53:41 -0400  
    Browse File »
  • Add ClosedFileInputSource ...
    4ccc8b1a
    ClosedFileInputSource is an input source that keeps the file closed
    when not reading it.
    Jay Berkenbilt authored
    2018-06-22 12:52:45 -0400  
    Browse File »
  • Don't prune resource dictionaries on errors or by request ...
    c71dc688
    If we are unable to filter a page's content streams, don't attempt to
    remove objects from the page's resource dictionary. Also provide a
    command line option to suppress resource removal in case we ever need
    this as a workaround for some bug or broken PDF files.
    Jay Berkenbilt authored
    2018-06-22 10:45:31 -0400  
    Browse File »

21 Jun, 2018
9 commits
  • When splitting files, remove unreferenced objects (fixes #203)
    6c89d4b3
    Jay Berkenbilt authored
    2018-06-21 21:03:30 -0400  
    Browse File »
  • Make page range optional in --rotate (fixes #211)
    84cd53f5
    Jay Berkenbilt authored
    2018-06-21 16:28:44 -0400  
    Browse File »
  • Add interactive form example
    2e8a3e16
    Jay Berkenbilt authored
    2018-06-21 16:04:54 -0400  
    Browse File »
  • Allow setting a form field's value
    397b097c
    Jay Berkenbilt authored
    2018-06-21 15:57:13 -0400  
    Browse File »
  • Better support for creating Unicode strings
    952a665a
    Jay Berkenbilt authored
    2018-06-21 15:57:13 -0400  
    Browse File »
  • Implement helper class for interactive forms
    0b05111d
    Jay Berkenbilt authored
    2018-06-21 15:57:13 -0400  
    Browse File »
  • Convert examples to use new page helper classes
    2e6e1204
    Jay Berkenbilt authored
    2018-06-21 15:57:13 -0400  
    Browse File »
  • Add QPDFPageDocumentHelper and QPDFPageObjectHelper ...
    2e7ee23b
    This is the beginning of higher-level API support using helper
    classes. The goal is to be able to add more helpers without continuing
    to pollute QPDF's and QPDFObjectHandle's public interfaces.
    Jay Berkenbilt authored
    2018-06-21 15:57:13 -0400  
    Browse File »
  • Add QPDFObjectHandle::Rectangle type ...
    4cded108
    Provide a convenient way of accessing rectangles.
    Jay Berkenbilt authored
    2018-06-21 15:57:13 -0400  
    Browse File »

12 May, 2018
1 commit
  • newline before endstream fix for object streams (fixes #205)
    078cf9bf
    Jay Berkenbilt authored
    2018-05-12 13:17:43 -0400  
    Browse File »

15 Apr, 2018
1 commit
  • Limit depth of nesting in direct objects (fixes #202) ...
    b4d6cf68
    This fixes CVE-2018-9918.
    Jay Berkenbilt authored
    2018-04-15 16:11:22 -0400  
    Browse File »

06 Mar, 2018
2 commits
  • Prepare 8.0.2 release
    f8c8e4dc
    Jay Berkenbilt authored
    2018-03-06 11:34:07 -0500  
    Browse File »
  • Properly handle pages with no contents (fixes #194) ...
    e4e2e26d
    Remove calls to assertPageObject(). All cases in the library that
    called assertPageObject() work fine if you don't call
    assertPageObject() because nothing assumes anything that was being
    checked by that call. Removing the calls enables more files to be
    successfully processed.
    Jay Berkenbilt authored
    2018-03-06 11:34:07 -0500  
    Browse File »

05 Mar, 2018
1 commit
  • Treat loop in xref tables as damage (fixes #192) ...
    ee44aef8
    Prior to this fix, if there was a loop detected in following /Prev
    pointers in xref streams/tables, it would cause qpdf to lose data.
    Note that this condition causes many PDF readers to hang or fail.
    Jay Berkenbilt authored
    2018-03-05 14:26:58 -0500  
    Browse File »

04 Mar, 2018
2 commits
  • Prepare 8.0.1 release
    6fe1e9de
    Jay Berkenbilt authored
    2018-03-04 07:16:20 -0500  
    Browse File »
  • Support "r" in page ranges (fixes #155)
    666f7943
    Jay Berkenbilt authored
    2018-03-04 07:05:14 -0500  
    Browse File »

03 Mar, 2018
1 commit
  • Ignore zlib data check errors (fixes #191)
    7b9f23a9
    Jay Berkenbilt authored
    2018-03-03 11:35:01 -0500  
    Browse File »

25 Feb, 2018
1 commit
  • Release 8.0.0
    3e8b643a
    Jay Berkenbilt authored
    2018-02-25 16:00:11 -0500  
    Browse File »

18 Feb, 2018
16 commits
  • Properly handle strings with PDF Doc Encoding (fixes #179) ...
    4bb3046f
    The QPDF_String::getUTF8Val() method was not treating strings that
    weren't explicitly Unicode as PDF Doc Encoded. This only affects
    characters in the range 0x80 through 0xa0.
    Jay Berkenbilt authored
    2018-02-18 21:06:27 -0500  
    Browse File »
  • Add C API for checking PDF files
    2780a187
    Jay Berkenbilt authored
    2018-02-18 21:06:27 -0500  
    Browse File »
  • More robust handling of type errors ...
    d0e99f19
    Give objects descriptions and context so it is possible to issue
    warnings instead of fatal errors for attempts to access objects of the
    wrong type.
    Jay Berkenbilt authored
    2018-02-18 21:06:27 -0500  
    Browse File »
  • Replace "file position" with "offset" in error messages ...
    c2e16827
    Sometimes it's an offset in an object stream or a content stream, so
    file position is confusing in some cases.
    Jay Berkenbilt authored
    2018-02-18 21:06:27 -0500  
    Browse File »
  • Include omitted object description in error message
    52e024f7
    Jay Berkenbilt authored
    2018-02-18 21:06:27 -0500  
    Browse File »
  • Include filename in object stream parse error
    cb3b705c
    Jay Berkenbilt authored
    2018-02-18 21:06:27 -0500  
    Browse File »
  • Add additional interface for filtering page contents
    5708b5d0
    Jay Berkenbilt authored
    2018-02-18 21:05:47 -0500  
    Browse File »
  • General comment in ChangeLog
    510d45d0
    Jay Berkenbilt authored
    2018-02-18 21:05:47 -0500  
    Browse File »
  • Detect and report bad tokens in content normalization
    5136238f
    Jay Berkenbilt authored
    2018-02-18 21:05:47 -0500  
    Browse File »
  • Filter tokens example
    30709935
    Jay Berkenbilt authored
    2018-02-18 21:05:47 -0500  
    Browse File »
  • Implement TokenFilter and refactor Pl_QPDFTokenizer ...
    99101044
    Implement a TokenFilter class and refactor Pl_QPDFTokenizer to use a
    TokenFilter class called ContentNormalizer. Pl_QPDFTokenizer is now a
    general filter that passes data through a TokenFilter.
    Jay Berkenbilt authored
    2018-02-18 21:05:46 -0500  
    Browse File »
  • Add coalesce contents capability
    b8723e97
    Jay Berkenbilt authored
    2018-02-18 21:05:46 -0500  
    Browse File »
  • Bug fix: content normalizer should not add trailing newline ...
    25988e8d
    Adding a trailing newline in content normalization damages files whose
    contents are split across streams in the middle of tokens. Let
    QPDFWriter add the newline with the indicator to ignore the newline,
    which it already does. This changes the way some qdf files look.
    Jay Berkenbilt authored
    2018-02-18 21:05:46 -0500  
    Browse File »
  • Switch from parseContentStream to parsePageContents
    6afe8397
    Jay Berkenbilt authored
    2018-02-18 21:05:46 -0500  
    Browse File »
  • Refactor parseContentStream
    fcd611b6
    Jay Berkenbilt authored
    2018-02-18 21:05:46 -0500  
    Browse File »
  • Inline image token type
    fefe2503
    Jay Berkenbilt authored
    2018-02-18 21:05:46 -0500  
    Browse File »