Mercurial > hgrepos > Python2 > PyMuPDF
view mupdf-source/docs/reference/javascript/functions.rst @ 33:c4daa0c83d64
Apply also -fstack-clash-protection and -fstack-protector-strong for all generated binaries.
Only done if EXTRA_CHECKS is not empty and not 0.
| author | Franz Glasner <fzglas.hg@dom66.de> |
|---|---|
| date | Sun, 21 Sep 2025 17:55:13 +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.
