aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2012-09-06Reset state in QPDF::calculateLinearizationDataJay Berkenbilt
This makes it possible to use two different writers to write linearized files from the same QPDF object.
2012-09-06Fix segmentation fault with use of QPDFWriter::setOutputMemoryJay Berkenbilt
2012-09-03Note to fix setOutputMemory bugJay Berkenbilt
2012-08-11Prepare 3.0.1 releaserelease-qpdf-3.0.1Jay Berkenbilt
2012-08-11Add pkgconfig to devel package in RPM specJay Berkenbilt
2012-08-11Add specially crafted test cases for EOF errorJay Berkenbilt
This replaces a PDF from the wild that I didn't want to include in the test suite but used to verify the original fix.
2012-08-11Bug fix: let EOF resolve literal tokenJay Berkenbilt
Previously only whitespace and comments did it. This fix is needed for object streams whose last object is a literal (name, integer, real, string) not terminated by space or newline.
2012-08-11Refactor: move resolution of literal to its own methodJay Berkenbilt
2012-08-11TODO update: bug report, suggestion from issueJay Berkenbilt
2012-08-10Reminder to mention pkg-config files in release notesJay Berkenbilt
2012-08-02Update version to 3.0.0release-qpdf-3.0.0Jay Berkenbilt
2012-07-31Minor update to release checklistJay Berkenbilt
2012-07-31Minor corrections to download instructionsJay Berkenbilt
2012-07-29Fix typo in release instructionsJay Berkenbilt
2012-07-29Add missing release notesrelease-qpdf-3.0.rc1Jay Berkenbilt
2012-07-29Make release entry in ChangeLogJay Berkenbilt
2012-07-29Fix spelling errorsJay Berkenbilt
2012-07-29Improve password handlingJay Berkenbilt
Use --encryption-file-password, if given, in addition to --password as a source for passwords for files specified in --pages.
2012-07-29Update copyright to 2012Jay Berkenbilt
2012-07-29Update documentation and version numbersJay Berkenbilt
3.0.rc1
2012-07-29Add QPDF_ to some variables used by the test suiteJay Berkenbilt
LARGE_FILE_TEST_PATH -> QPDF_LARGE_FILE_TEST_PATH SKIP_TEST_COMPARE_IMAGES -> QPDF_SKIP_TEST_COMPARE_IMAGES
2012-07-28Mention page selection in basic optionsJay Berkenbilt
2012-07-26Restore coverage caseJay Berkenbilt
Previous commit lost coverage case for buffer-based replaceStreamData.
2012-07-25added QPDFObjectHandle::replaceStreamData(std::string data).Tobias Hoffmann
2012-07-23Fix help for --enable-ld-version-scriptJay Berkenbilt
Incorrectly stated that default is disabled when it is actually enabled.
2012-07-22Windows compilation fixesJay Berkenbilt
2012-07-22Image comparison tests are off by defaultJay Berkenbilt
2012-07-22Command-line page merging and splittingJay Berkenbilt
Implement --pages ... -- option for qpdf. Update TODO with remaining things to document.
2012-07-21Never mind about large file test changeJay Berkenbilt
2012-07-21Add note about large file testJay Berkenbilt
2012-07-21Implement QPDFObjectHandle::parseJay Berkenbilt
Move object parsing code from QPDF to QPDFObjectHandle and parameterize the parts of it that are specific to a QPDF object. Provide a version that can't handle indirect objects and that can be called on an arbitrary string. A side effect of this change is that the offset used when reporting invalid stream length has changed, but since the new value seems like a better value than the old one, the test suite has been updated rather than making the code backward compatible. This only effects the offset reported for invalid streams that lack /Length or have an invalid /Length key. Updated some test code and exmaples to use QPDFObjectHandle::parse. Supporting changes include adding a BufferInputSource constructor that takes a string.
2012-07-21Move readToken from QPDF to QPDFTokenizerJay Berkenbilt
2012-07-21Refactor: pull *InputSource out of QPDFJay Berkenbilt
InputSource, FileInputSource, and BufferInputSource are now top-level classes instead of privately nested inside QPDF.
2012-07-18Prevent seeking before beginning of BufferInputSourceJay Berkenbilt
2012-07-16TODO notesJay Berkenbilt
2012-07-16Add command line option to copy encryption from other fileJay Berkenbilt
Add --copy-encryption and --encryption-file-password options to qpdf. Also strengthen test suite for copying encryption. The strengthened test suite would have caught the failure to preserve AES and the failure to update the file version, which was invalidating the encrypted data.
2012-07-16Minor fixes to copyEncryptionParametersJay Berkenbilt
This fixes were to code added yesterday; the problems would not have impacted any previously released code. These are all changes related to the possibility that copyEncryptionParameters may be called on behalf a different QPDF than the one being written.
2012-07-16Bug fix: preserve AES when copying encryption parametersJay Berkenbilt
2012-07-15qpdf: push inherited attributes to page when showing imagesJay Berkenbilt
from qpdf command-line tool
2012-07-14Add public QPDFWriter::copyEncryptionParametersJay Berkenbilt
Method to copy encryption parameters from another file. Adapted from existing code to copy encryption parameters from the original file.
2012-07-14test_driver: accept optional second file nameJay Berkenbilt
This way we don't have to hard-code the name of a second file in the test driver for tests that require one.
2012-07-14Have QPDFWriter detect foreign objects while writingJay Berkenbilt
Throw an exception that directs the user to QPDF::copyForeignObject.
2012-07-11Update getPageImages() comment to mention pushInheritedAttributesToPage()Jay Berkenbilt
2012-07-11Support copying objects from another QPDF objectJay Berkenbilt
This includes QPDF::copyForeignObject and supporting foreign objects as arguments to addPage*.
2012-07-11Add concept of reserved objectsJay Berkenbilt
QPDFObjectHandle::{new,is,assert}Reserved, QPDF::replaceReserved provide a mechanism to add objects to a PDF file when there are circular references. This is a prerequisite to copying objects from one PDF to another.
2012-07-11Add release reminderJay Berkenbilt
2012-07-11Fix typo in variable nameJay Berkenbilt
2012-07-11Favor string-based newStream methodJay Berkenbilt
2012-07-08Update TODOJay Berkenbilt
2012-07-08Fix: make unparse virtual for Null and RealJay Berkenbilt