summaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2017-08-21Fix HTML entities in docs.Tor Andersson
2017-07-21Add 'mutool trace' command.Tor Andersson
2017-06-15Add contributor license agreement link to the docs.Tor Andersson
2017-06-15Update how to build native examples.Sebastian Rasmussen
2017-06-15Update android library build instructions.Sebastian Rasmussen
2017-06-15Update android viewer build instructions.Tor Andersson
The ant is dead, long live the gradle wrapper!
2017-06-03Tweak pdf_graft_map API.Robin Watts
Passing a pdf_document to pdf_graft_object to specify the source document is redundant, as if we need to know the document, it will be pickled into the object we are copying. Similarly, repeatedly having to pass the destination document seems silly when we can just pickle it into the map too (and this removes the possibility of people using a different destination document part way through). This leaves to simplifying the pdf_graft_object call, at the expense of splitting it into 2 calls - one with a map, and one without. Also, we can delay the creation of the mapping table until we are first asked to copy an object that requires deep copying. This avoids us ever having to manually pass in the source document. This has knock-on effects in the java and javascript classes, but with the advantage of being clearer in the end (IMHO). Conflicts: include/mupdf/pdf/document.h
2017-04-13Add an example JPEG2000 to PDF script.Tor Andersson
2017-04-13Use addRawStream in pdf-create-lowlevel.js example script.Tor Andersson
The more explicit createObject, writeObject, writeRawStream idiom is shown in pdf-merge.js.
2017-04-13Add android library build instructions.Tor Andersson
2017-04-13Organize docs into HTML files.Tor Andersson
2017-04-13Move all examples to docs/examples directory.Tor Andersson
2017-03-29Happy New Year!Sebastian Rasmussen
2017-01-17Fix typos.Sebastian Rasmussen
2016-11-23js: Add setUserCSS function.Tor Andersson
2016-11-14js: Update docs for annotation functions (WIP).Tor Andersson
2016-11-14Add optional 'object' argument to pdf_add_stream.Tor Andersson
2016-10-26js: Update docs with PDFObject accessor functions.Tor Andersson
2016-10-21Update docs/naming.txtTor Andersson
2016-10-07Fix link in documentation.Tor Andersson
2016-10-07js: Make PDFDocument, PDFPage, and PDFAnnotation subclasses.Tor Andersson
Add isPDF methods to query availability of PDF specific methods.
2016-08-30js: Add PDFObject.length and PDFObject.push() to handle arrays.Tor Andersson
2016-07-14Fix whitespace and indentation.Tor Andersson
2016-07-12js: 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-12js: Update DrawDevice example.Tor Andersson
2016-07-08Separate 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-08js: Add wrapper for fz_stext_page to search, select and copy text.Tor Andersson
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