All Projects → GitbookIO → Plugin Autocover

GitbookIO / Plugin Autocover

Licence: apache-2.0
Generate a cover for the book

Programming Languages

javascript
184084 projects - #8 most used programming language

Cover Generation for GitBook

Generate a cover for the book.

How to use it:

To use this plugin in your book, add it to your book.json:

{
    "plugins": ["autocover"],
    "pluginsConfig": {
        "autocover": {
            // Configuration for autocover (see below)
        }
    }
}

And run gitbook install to fetch and prepare all plugins.

Installation of canvas

This module use node-canvas. You need to install some modules on your system before being able to use it: Wiki of node-canvas.

Configuration

Here is default configuration of autocover, you can change it in your book.json:

{
    "title": "My Book",
    "author": "Author",
    "pluginsConfig": {
        "autocover": {
            "font": {
                "size": null,
                "family": "Impact",
                "color": "#FFF"
            },
            "size": {
                "w": 1800,
                "h": 2360
            },
            "background": {
                "color": "#09F"
            }
        }
    }
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].