Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-07-11 | JNI: Fix annotation crashing problem. | Robin Watts | |
I was forgetting to 'keep' the annot. Inspection of the code shows just 1 other place where I've made that mistake, and it's currently disabled (but updated here anyway). | |||
2016-07-11 | MSVC: Add DebugJava/ReleaseJava configurations. | Robin Watts | |
These build the mupdf desktop java viewer. | |||
2016-07-11 | Update mupdf_native.c for Windows. | Robin Watts | |
Use Windows threads rather than pthreads when building on windows. | |||
2016-07-11 | Fixes to iOS application for recent API changes | Michael Vrhel | |
2016-07-09 | Add documentation for exposed LAB function. | Sebastian Rasmussen | |
2016-07-08 | Avoid warnings in non-Memento builds. | Robin Watts | |
2016-07-08 | Bug 696872: Avoid trying to paint with zero alpha. | Robin Watts | |
Short circuit any attempt to paint a pixmap with zero alpha. | |||
2016-07-08 | Fix Windows builds. | Robin Watts | |
generated.sh was broken (wrong font path). load_pnm.c had been omitted from VS projects. | |||
2016-07-08 | Bug 696911: muraster with no threads lib. | Robin Watts | |
Fix various niggles with muraster when compiled with no thread lib. Thanks to Tamir Evan. | |||
2016-07-08 | Use fz_keep_imp and fz_drop_imp for all reference counting. | Tor Andersson | |
2016-07-08 | git stripspace | Tor Andersson | |
2016-07-08 | Separate close and drop functionality for devices and writers. | Tor Andersson | |
Closing a device or writer may throw exceptions, but much of the foreign language bindings (JNI and JS) depend on drop to never throw an exception (exceptions in finalizers are bad). | |||
2016-07-08 | Slim pdf_xobject: remove cached colorspace field. | Tor Andersson | |
2016-07-08 | Slim pdf_xobject: remove cached document field. | Tor Andersson | |
2016-07-08 | Slim pdf_xobject: remove cached transparency/isolated/knockout fields. | Tor Andersson | |
2016-07-08 | Slim pdf_xobject struct: remove cached matrix field. | Tor Andersson | |
2016-07-08 | Slim pdf_xobject struct: remove cached bbox field. | Tor Andersson | |
2016-07-08 | Slim pdf_xobject struct: remove cached resources field. | Tor Andersson | |
The "contents" field is the same as the "obj" field, so can also be removed. | |||
2016-07-08 | Slim pdf_xobject struct: Rename me to obj. | Tor Andersson | |
2016-07-08 | Slim pdf_annot struct: remove cached page_ctm field. | Tor Andersson | |
2016-07-08 | Slim pdf_annot struct: remove cached inv_page_ctm field. | Tor Andersson | |
2016-07-08 | Slim pdf_annot struct: remove cached annot_type and widget_type fields. | Tor Andersson | |
2016-07-08 | Slim pdf_annot struct: remove cached matrix field. | Tor Andersson | |
2016-07-08 | Slim pdf_annot struct: remove cached rect field. | Tor Andersson | |
2016-07-08 | Slim pdf_annot struct: remove cached pagerect field. | Tor Andersson | |
2016-07-08 | Safe defaults for pdf_to_rect and pdf_to_matrix. | Tor Andersson | |
Return the empty rectangle and identity matrix when the pdf object is missing or not an array. | |||
2016-07-08 | js: Add wrapper for fz_stext_page to search, select and copy text. | Tor Andersson | |
2016-07-08 | Use fz_vsnprintf to format warnings and error messages. | Tor Andersson | |
2016-07-08 | android: Fix mixed tabs/spaces in DocViewActivity.java. | Tor Andersson | |
2016-07-07 | Ignore duplicate character in structured text extraction. | Sebastian Rasmussen | |
2016-07-06 | Android example: modify to use new JNI, N-up page display | fredrossperry | |
- uses AndroidDrawDevice for rendering - very simple sample app - mupdf-specific functionality in a module called "mupdf" - N-up page display - page rendering in a background task Signed-off-by: fredrossperry <fredrossperry@gmail.com> | |||
2016-07-06 | Proofing - fix a bug in the use of gswin32.exe. | fredrossperry | |
Surround the final filename parameter in quotes ("") so file and folder names with spaces can be used. | |||
2016-07-06 | Android viewer - replace missing build.gradle file | fredrossperry | |
also, change SUPPORT_GPROOF to FZ_ENABLE_GPRF | |||
2016-07-06 | Android viewer: add mupdf_native.c to build | fredrossperry | |
This is because platform/android/example also uses the resulting shared library. | |||
2016-07-06 | x11: Fix segfault when creating presentation transitions. | Tor Andersson | |
2016-07-06 | Start slimming pdf_page. | Tor Andersson | |
We want to turn pdf_page into a thin wrapper around a pdf_obj, so that any updates to the underlying PDF objects will be reflected without having to reload the pdf_page. | |||
2016-07-06 | Add fitz to pdf downcasting functions for pages and annotations. | Tor Andersson | |
2016-07-06 | Update luratech jbig2 function prototype with int to size_t change. | Tor Andersson | |
2016-07-06 | Add annotations to murun. | Tor Andersson | |
2016-07-06 | Remove premature optimization: don't bother to resolve page objects. | Tor Andersson | |
2016-07-06 | Fix garbage collection and page grafting for indirect reference chains. | Tor Andersson | |
The mark & sweep pass of garbage collection, and resolving indirect objects when grafting objects was following the full chain of indirect references. In the unusual case where a numbered object is itself only an indirect reference to another object, this intermediate numbered object would be missed both when marking for garbage collection, and when copying objects for grafting. Add a function to resolve only one step for these two uses. The following is an example of a file that would break during garbage collection if we follow full indirect reference chains: %PDF-1.3 1 0 obj <</Type/Catalog /Foo[2 0 R 3 0 R]>> endobj 2 0 obj 4 0 R endobj 3 0 obj 5 0 R endobj 4 0 obj <</Length 1>> stream A endstream endobj 5 0 obj <</Length 1>> stream B endstream endobj | |||
2016-07-06 | pdf: Drop generation number from public interfaces. | Tor Andersson | |
The generation number is only needed for decryption, and is assumed to be zero or irrelevant for all other uses. Store the original object number and generation in the xref slot, so that we can decrypt them even when the objects have been renumbered, without needing to pass the original object number around through the stream loading APIs. | |||
2016-07-06 | pdf: Increment generation number in the xref when deleting an object. | Tor Andersson | |
2016-07-06 | pdf: Flatten inheritable page properties when copying pages. | Tor Andersson | |
Affects pdfclean, pdfmerge, and pdfposter. | |||
2016-07-06 | pdf: Check ownership when adding objects to a document. | Tor Andersson | |
2016-07-06 | gl: Fix buffer overrun when there are too many annotations. | Tor Andersson | |
2016-07-06 | Add support for decoding pbm/pgm/ppm/pam images. | Sebastian Rasmussen | |
2016-07-06 | Add optional support for JPEG-XR. | Sebastian Rasmussen | |
2016-07-06 | Some minor optimizations. | Tor Andersson | |
2016-07-06 | Add optional support for Luratech JPEG2000 decoder. | Sebastian Rasmussen | |