Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-04-13 | Organize docs into HTML files. | Tor Andersson | |
2017-03-29 | Happy New Year! | 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-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-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-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-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-16 | Update getStride and add getAlpha to JS bindings. | 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 | |