Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-08-21 | Fix HTML entities in docs. | Tor Andersson | |
2017-07-21 | Add 'mutool trace' command. | Tor Andersson | |
2017-06-15 | Add contributor license agreement link to the docs. | Tor Andersson | |
2017-06-15 | Update how to build native examples. | Sebastian Rasmussen | |
2017-06-15 | Update android library build instructions. | Sebastian Rasmussen | |
2017-06-15 | Update android viewer build instructions. | Tor Andersson | |
The ant is dead, long live the gradle wrapper! | |||
2017-06-03 | Tweak 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-13 | Add an example JPEG2000 to PDF script. | Tor Andersson | |
2017-04-13 | Use 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-13 | Add android library build instructions. | Tor Andersson | |
2017-04-13 | Organize docs into HTML files. | Tor Andersson | |
2017-04-13 | Move all examples to docs/examples directory. | Tor Andersson | |
2017-03-29 | Happy New Year! | Sebastian Rasmussen | |
2017-01-17 | Fix typos. | Sebastian Rasmussen | |
2016-11-23 | js: Add setUserCSS function. | Tor Andersson | |
2016-11-14 | js: Update docs for annotation functions (WIP). | Tor Andersson | |
2016-11-14 | Add optional 'object' argument to pdf_add_stream. | Tor Andersson | |
2016-10-26 | js: Update docs with PDFObject accessor functions. | Tor Andersson | |
2016-10-21 | Update docs/naming.txt | Tor Andersson | |
2016-10-07 | Fix link in documentation. | Tor Andersson | |
2016-10-07 | js: Make PDFDocument, PDFPage, and PDFAnnotation subclasses. | Tor Andersson | |
Add isPDF methods to query availability of PDF specific methods. | |||
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 | |