summaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2016-07-06Add fitz to pdf downcasting functions for pages and annotations.Tor Andersson
2016-07-06Add annotations to murun.Tor Andersson
2016-07-06Add optional support for JPEG-XR.Sebastian Rasmussen
2016-07-06Add optional support for Luratech JPEG2000 decoder.Sebastian Rasmussen
2016-06-29Make docs/thirdparty.txt info current and accurate.Sebastian Rasmussen
2016-06-29Update examples.Tor Andersson
2016-06-23Update JNI code. Take explicit alpha argument in toPixmap functions.Tor Andersson
2016-06-17Add separate X and Y resolution to draw device options.Tor Andersson
2016-06-17Add 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-17Add device space transform state to draw device.Tor Andersson
Allows us to remove the out parameter 'transform' from fz_begin_page.
2016-06-17Add some quick notes on integer types.Robin Watts
2016-06-16Update getStride and add getAlpha to JS bindings.Tor Andersson
2016-06-14Add missing subtools to mutool manpage.Sebastian Rasmussen
2016-06-06Add FZ_ENABLE_JS configuration define.Tor Andersson
2016-05-24fz_pixmap revamp: add stride and make alpha optionalRobin 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-20murun: Add Buffer#writeBuffer to allow for concatenating buffers.Tor Andersson
2016-05-20murun: Add graftObject to javascript bindings.Tor Andersson
Add some paranoid checks to pdf_graft_object to prevent user errors from crashing mupdf.
2016-05-13murun: Add document writer object.Tor Andersson
2016-05-13Add 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-27Tweak 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-27murun: Add pdf.deleteObject().Tor Andersson
2016-04-27Add 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-26Add 'mutool run' documentation.Tor Andersson
2016-02-29Update man pages with new pdfcreate command.Tor Andersson
2016-02-12Add logo and icon image files.Tor Andersson
2016-01-20Update manpages.Sebastian Rasmussen
2016-01-05Link required thirdparty libraries into one library: libmupdfthird.aTor 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-15Add logo files.Tor Andersson
2015-12-15Rename 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-25Update docs/example.c to use utility functions.Tor Andersson
And add error handling.
2015-06-11Update 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-25Merge 'mudraw' into 'mutool' binary.Tor Andersson
Use "mutool draw" or symlink mutool to mudraw to use mudraw.
2015-04-16mutool clean -z option to compress streams.Tor Andersson
2015-04-08Update docs/thirdparty.txtTor Andersson
Remove v8 from docs/thirdparty.txt since we use MuJS by default.
2015-04-08Add 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-08Update documentation with fz_context changes.Robin Watts
2015-04-07Add EPUB layout options to mupdf-x11 and mudraw.Tor Andersson
2015-04-07Rename mutool show 'pages' to 'pagetree' to reduce possible confusion.Tor Andersson
Fixes bug 695909.
2015-04-06Add 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-01Update manpages.Tor Andersson
2015-04-01Clean up mudraw command line syntax.Tor Andersson
... and move outline printing to mutool show.
2015-02-17Reference count fz_document.Tor Andersson
2014-08-20Add 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-15Add libmujs.a to documentation example build command.Tor Andersson
2014-05-07Remove platform/debian directory.Tor Andersson
These files are maintained by debian. Now that debian updates the mupdf package more regularly there is no need for us to keep our own debian packaging files. https://packages.debian.org/unstable/main/mupdf
2014-04-02Update examples.Tor Andersson
2014-01-09Update copyright date.Tor Andersson
2013-12-23Bug 694765: Fix typo in man pages.Robin Watts
Thanks for Francesco Turco for spotting this.
2013-10-11Update documentation of multithreading and contexts.Robin Watts
Attempt to improve the clarity of the explainations pertaining to cloning contexts and bound contexts.
2013-09-08Update thirdparty.txt to include curlChris Liddell