Register

Export Sheet to PDF

An Add-on Module for Foundry Virtual Tabletop

Author: arcanist Project Source: Project URL Versions 0.7.9+ (Verified 11) Last Updated 5 months ago

Version Latest Release Download Count Supported Foundry Versions Discord Server Patreon

A system agnostic tool to export your Foundry character sheet to a PDF!

Usage

Just click on the button in the header of a character sheet and then it will open the configuration window. Once you upload a PDF, you'll see a list of each of the PDF's fields alongside an input. If you have a mapping configured correctly, those fields will automatically be filled out with the values from your character sheet.

Get a PDF

This module requires you to upload a form-fillable PDF which it will fill out for you. If you need a copy of the PDF, there is a button which will download the correct one for some systems.

You can theoretically use this module with the PDF for any system, but some fields used on other PDFs may not be supported. File a bug if you encounter a PDF that doesn't work.

Mapping

A mapping is required for the module to function as expected. You can edit the current mapping in module settings and there is also a dropdown menu with some community contributed mappings which you can load in.

A mapping is a JavaScript object (not JSON) which is saved with a .mapping file extension. The mapping provides the information needed to know which PDF fields to associate with which values from your actor. It is also responsible for formatting, calculating, concatenating, etc. those values for display on the PDF character sheet.

TIP: Install Ace Library if you want to use a proper editor to work on creating your mapping.

The mapping is formatted like this:

[
    {
        "pdf": "CharacterName",
        "foundry": @name
    },
    {
        "pdf": "Check Box 11",
        "foundry": @data.abilities.str.proficient
    },
    {
        "pdf": "Race",
        "foundry": @data.details.race
    },
    {
        pdf: "Speed",
        foundry: Object.entries(actor.data.data.attributes.movement).filter(val => val[1]).map(val => val[0] === "hover" ? Object.entries(actor.data.data.attributes.movement)[6][0] : "" + val[0] !== "units" && val[0] !== "hover" ? val.join(": ") + Object.entries(actor.data.data.attributes.movement)[5][1] : "").filter(String).join(", ")
    },
    {
        pdf: "Backstory",
        foundry: @data.details.biography.value?.replaceAll(/<[^>]*>/g, "").trim()
    },
    { "pdf": "PlayerName", foundry: Object.entries(@permission).filter(entry => entry[1] === 3).map(entry => entry[0]).map(id => !game.users.get(id)?.isGM ? game.users.get(id)?.name : null).filter(x => x).join(", ") }
]

This will take care of filling out the character name, strength save proficiency, race, speed, and backstory on a D&D 5e character sheet.

As you can see, the @ is used to access properties of the Actor data, rather than a fixed value. You may use any valid JavaScript functions or formulas in the mapping, but it should return a String or coerce into one.

⚠️WARNING: Do not use line comments (you can use block comments) since the mapping is saved on one line.

While creating a mapping, it's very helpful to work in the browser console (F12):

Please share any mappings you create with me and I will include them in the module for the benefit of the community. See the mappings here.


Come hang out on my Discord server if you have questions, suggestions, or need help.

Categories

Available Versions

  1. Version 0.24.6

    5 months ago
    Foundry Version 0.7.9+ (Verified 11) Manifest URL Read Notes
  2. Version 0.24.5

    Foundry Version 0.7.9+ (Verified 11) Manifest URL Read Notes
  3. Version 0.24.3

    Foundry Version 0.7.9+ (Verified 11) Manifest URL Read Notes
  4. Version 0.24.1

    Foundry Version 0.7.9+ (Verified 11) Manifest URL Read Notes
  5. Version 0.24.0

    Foundry Version 0.7.9+ (Verified 11) Manifest URL Read Notes
  6. Version 0.23.1

    Foundry Version 0.7.9+ (Verified 11) Manifest URL Read Notes
  7. Version 0.23.0

    Foundry Version 0.7.9+ (Verified 11) Manifest URL Read Notes
  8. Version 0.22.4

    Foundry Version 0.7.9+ (Verified 10) Manifest URL Read Notes
  9. Version 0.22.3

    Foundry Version 0.7.9+ (Verified 10) Manifest URL Read Notes
  10. Version 0.22.2

    Foundry Version 0.7.9+ (Verified 10) Manifest URL Read Notes
  11. Version 0.22.0

    Foundry Version 0.7.9+ (Verified 10) Manifest URL Read Notes