Mercurial > hgrepos > Python2 > PyMuPDF
view mupdf-source/docs/reference/javascript/functions.rst @ 40:aa33339d6b8a upstream
ADD: MuPDF v1.26.10: the MuPDF source as downloaded by a default build of PyMuPDF 1.26.5.
| author | Franz Glasner <fzglas.hg@dom66.de> |
|---|---|
| date | Sat, 11 Oct 2025 11:31:38 +0200 |
| parents | b50eed0cc0ef |
| children |
line wrap: on
line source
.. default-domain:: js .. highlight:: javascript Functions ========= Most functionality is provided by member functions of class objects. There are just a couple of top level configuration functions listed here. .. function:: mupdf.installLoadFontFunction(callback) Install a handler to load system (or missing) fonts. The callback function will be called with four arguments: .. code-block:: callback(fontName, scriptName, isBold, isItalic) The callback should return either a `Font` object for the requested font, or ``null`` if an exact match cannot be found (so that the font loading machinery can keep looking through the chain of fallback fonts). .. function:: mupdf.enableICC() Enable ICC-profiles based operation. .. function:: mupdf.disableICC() Disable ICC-profiles based operation. .. function:: mupdf.setUserCSS(stylesheet, useDocumentStyles) Set a style sheet to apply to all reflowable documents. :param string stylesheet: The CSS text to use. :param boolean useDocumentStyles: Whether to respect the document's own style sheet.
