Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-08-30 | js: Add PDFObject.length and PDFObject.push() to handle arrays. | Tor Andersson | |
2016-07-14 | Fix whitespace and indentation. | Tor Andersson | |
2016-07-12 | js: Add doc.loadOutline and page.getLinks functions. | Tor Andersson | |
These just convert fz_outline and fz_link into plain JS arrays and objects with no associated native userdata. | |||
2016-07-12 | js: Update DrawDevice example. | 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 | js: Add wrapper for fz_stext_page to search, select and copy text. | Tor Andersson | |
2016-07-06 | Add fitz to pdf downcasting functions for pages and annotations. | Tor Andersson | |
2016-07-06 | Add annotations to murun. | Tor Andersson | |
2016-07-06 | Add optional support for JPEG-XR. | Sebastian Rasmussen | |
2016-07-06 | Add optional support for Luratech JPEG2000 decoder. | Sebastian Rasmussen | |
2016-06-29 | Make docs/thirdparty.txt info current and accurate. | Sebastian Rasmussen | |
2016-06-29 | Update examples. | Tor Andersson | |
2016-06-23 | Update JNI code. Take explicit alpha argument in toPixmap functions. | Tor Andersson | |
2016-06-17 | Add separate X and Y resolution to draw device options. | Tor Andersson | |
2016-06-17 | Add mediabox argument to fz_new_display_list. | Tor Andersson | |
To return the proper size from fz_bound_display_list, which has been broken since the begin_page device call was removed. | |||
2016-06-17 | Add device space transform state to draw device. | Tor Andersson | |
Allows us to remove the out parameter 'transform' from fz_begin_page. | |||
2016-06-17 | Add some quick notes on integer types. | Robin Watts | |
2016-06-16 | Update getStride and add getAlpha to JS bindings. | Tor Andersson | |
2016-06-14 | Add missing subtools to mutool manpage. | Sebastian Rasmussen | |
2016-06-06 | Add FZ_ENABLE_JS configuration define. | Tor Andersson | |
2016-05-24 | fz_pixmap revamp: add stride and make alpha optional | Robin Watts | |
fz_pixmaps now have an explicit stride value. By default no change from before, but code all copes with extra gaps at the end of the line. The alpha data in fz_pixmaps is no longer compulsory. mudraw: use rgb not rgba (ppmraw), cmyk not cmyka (pkmraw). Update halftone code to not expect alpha plane. Update PNG writing to cope with alpha less input. Also hide repeated params within the png output context. ARM code needs updating. | |||
2016-05-20 | murun: Add Buffer#writeBuffer to allow for concatenating buffers. | Tor Andersson | |
2016-05-20 | murun: Add graftObject to javascript bindings. | Tor Andersson | |
Add some paranoid checks to pdf_graft_object to prevent user errors from crashing mupdf. | |||
2016-05-13 | murun: Add document writer object. | Tor Andersson | |
2016-05-13 | Add long output option parsing. | Tor Andersson | |
Use comma-separated list of flags and key/value pairs, for example: "linearize,resolution=72,colorspace=gray" | |||
2016-04-27 | Tweak pdf-write option handling. | Tor Andersson | |
The handling of not-decompressing images/fonts was geared towards pdfclean usage; but now that we can create new PDF files, it makes more sense to ask for images and fonts to be compressed, rather than asking for them not to be decompressed with quirky interaction with the 'expand' and 'deflate' flags. If -f or -i are set, we will never decompress images, and we will compress them if they are uncompressed. If -d is set, we will first decompress all streams (module -f or -i). If -z is set, we will then compress all uncompressed streams. | |||
2016-04-27 | murun: Add pdf.deleteObject(). | Tor Andersson | |
2016-04-27 | Add fz_close_device function. | Tor Andersson | |
Garbage collected languages need a way to signal that they are done with a device other than freeing it. Call it implicitly on fz_drop_device; so take care not to call it again in case it has been explicitly called already. | |||
2016-04-26 | Add 'mutool run' documentation. | Tor Andersson | |
2016-02-29 | Update man pages with new pdfcreate command. | Tor Andersson | |
2016-02-12 | Add logo and icon image files. | Tor Andersson | |
2016-01-20 | Update manpages. | Sebastian Rasmussen | |
2016-01-05 | Link required thirdparty libraries into one library: libmupdfthird.a | Tor Andersson | |
Keep the extra thirdparty libraries (curl and glfw) separate. This matches the build process for android and win32. Also purge some unused makefile sections. | |||
2015-12-15 | Add logo files. | Tor Andersson | |
2015-12-15 | Rename fz_write_x to fz_save_pixmap_as_x or fz_save_bitmap_as_x. | Tor Andersson | |
Separate naming of functions that save complete files to disk from functions that write data to streams. | |||
2015-09-25 | Update docs/example.c to use utility functions. | Tor Andersson | |
And add error handling. | |||
2015-06-11 | Update make instructions in examples to allow for crypto lib. | Robin Watts | |
If libcrypto is installed then the Make system will cause HAVE_OPENSSL to be defined during the build. This pulls in dependencies on libcrypto, so this needs to be included in the link. | |||
2015-05-25 | Merge 'mudraw' into 'mutool' binary. | Tor Andersson | |
Use "mutool draw" or symlink mutool to mudraw to use mudraw. | |||
2015-04-16 | mutool clean -z option to compress streams. | Tor Andersson | |
2015-04-08 | Update docs/thirdparty.txt | Tor Andersson | |
Remove v8 from docs/thirdparty.txt since we use MuJS by default. | |||
2015-04-08 | Add docs/example.c and docs/multi-threaded.c to 'make examples' target. | Tor Andersson | |
Also update the examples for the recent API changes and make them build under MSVC. | |||
2015-04-08 | Update documentation with fz_context changes. | Robin Watts | |
2015-04-07 | Add EPUB layout options to mupdf-x11 and mudraw. | Tor Andersson | |
2015-04-07 | Rename mutool show 'pages' to 'pagetree' to reduce possible confusion. | Tor Andersson | |
Fixes bug 695909. | |||
2015-04-06 | Add mutool pages subcommand. | Robin Watts | |
Inspired by bug 695823. Mutool can now dump the sizes and orientations for pages within a given file. | |||
2015-04-01 | Update manpages. | Tor Andersson | |
2015-04-01 | Clean up mudraw command line syntax. | Tor Andersson | |
... and move outline printing to mutool show. | |||
2015-02-17 | Reference count fz_document. | Tor Andersson | |
2014-08-20 | Add full-page color tinting option and key binding to X11 viewer. | Tor Andersson | |
win32 supports tinting, but cannot change the color from the default. | |||
2014-08-15 | Add libmujs.a to documentation example build command. | Tor Andersson | |