summaryrefslogtreecommitdiff
path: root/apps/pdfinfo.c
AgeCommit message (Collapse)Author
2010-06-21Preload page tree into an array to avoid unnecessary linear searching when ↵Tor Andersson
looking for a given page.
2010-06-20Rename the remaining non-reference-counted free functions to free instead of ↵Tor Andersson
drop.
2010-06-15Explicitly return 0 from main() in the tools.Tor Andersson
2010-05-22Remove unnecessary explicit resolving of indirect objects.Sebastian Rasmussen
2010-05-18Do not check return value from fz_malloc() and fz_realloc() in pdfinfo and ↵Sebastian Rasmussen
Windows viewer.
2010-04-24Always parse info and encryption entries in trailer in pdfinfo.Sebastian Rasmussen
2010-04-16Resurrect pdfinfo tool.Sebastian Rasmussen
2010-04-11Revert to using fitz string functions instead of non-standard libc variants.Tor Andersson
2009-11-29Add some braces and fix up double-indentation on multi-line if/while ↵Tor Andersson
expressions.
2009-11-29Fix up indentation.Tor Andersson
2009-11-20As a new code policy in MuPDF, malloc cannot return NULL. As a result we can ↵Tor Andersson
get rid of large chunks of untested error handling code. This patch cleans up the handling of fz_obj.
2009-08-27Fixed silly typo in pdfinfo text string.Sebastian Rasmussen
2009-08-19Implement support for AES encryption.Tor Andersson
2009-07-18Have pdfinfo print the filename being processed.Sebastian Rasmussen
2009-07-18Do not let pdfinfo fail on invalid objects/dicts.Sebastian Rasmussen
2009-07-18Load the pagecount after the encryption has been parsed and installed.Tor Andersson
2009-07-12Fix typo in pdfinfo that made it crash on pdf containing patterns.Sebastian Rasmussen
2009-07-09Parse page tree on-demand instead of parsing the entire tree after reading xref.Sebastian Rasmussen
2009-07-09Not resolving pages when inserting them in page tree removes a lot of code ↵Sebastian Rasmussen
with no ill effects.
2009-07-06Declare functions void if they take no arguments.Sebastian Rasmussen
2009-07-05Make internal functions static.Sebastian Rasmussen
2009-07-05Fix bug in pdfinfo where shadings were gathered as if they were patterns.Sebastian Rasmussen
2009-07-05Fix bugs in pdfinfo where not all objects were properly tracked.Sebastian Rasmussen
2009-07-05Refactor xref opening and closing to a common file for all pdf tools.Sebastian Rasmussen
2009-07-04Follow naming conventions in pdfinfo.Sebastian Rasmussen
2009-07-04Remove creation of fake objects from pdfinfo.Sebastian Rasmussen
2009-07-04Remove unused outline from pdfinfo.Sebastian Rasmussen
2009-07-04Improve printing of processed file names in pdfinfo.Sebastian Rasmussen
2009-07-03Use fz_getopt & co.Tor Andersson
2009-07-02Increment reference count of catalog and info objects when opening a pdf.Tor Andersson
2009-06-30Add support to print information about encrypted pdfs.Sebastian Rasmussen
2009-06-30Move dynamic objects (fz_obj) out of fitz and into mupdf conceptually. Make ↵Tor Andersson
all fz_obj functions automatically and invisibly resolve indirect references before use.
2009-06-29Attempt to continue is password is missing for pdf debug tools.Sebastian Rasmussen
2009-06-29Correct pdfinfo usage text.Sebastian Rasmussen
2009-05-02Fix typo in pdfinfo.Sebastian Rasmussen
2009-03-08Fix whitespace issues.Sebastian Rasmussen
2009-04-03Replaced alloc/free with fitz specific implementation.Sebastian Rasmussen
2009-03-16Fix some Coverity issues.Tor Andersson
2009-03-11Remove fz_outofmem constant.Tor Andersson
2009-03-11Change fz_error* struct into an integer error type fz_error.Tor Andersson
2009-03-11Add fz_catch function, and cause the throw/rethrow/catch functions to print ↵Tor Andersson
the errors immediately.
2009-03-05Split pdftool into separate mini-tools again.Tor Andersson