Skip to main content

Generate printable PDF files for tabletop RPG tokens and maps

Project description

TokenPDF: Generate printable PDFs for RPG tokens and map

TokenPDF is a lightweight Python library for creating printable PDF files containing RPG tokens and (possibly large) maps. It simplifies the process of generating monster-tokens, and fragmenting maps into printable pages, while minimizing the number of papers required. The library is fully configureable.

Example output


Changelog

See the Changelog for details on recent changes.

Getting Started

Installation

From PyPI

To install, use one of the following commands:

pip install tokenpdf
pip install tokenpdf[full]
pip install tokenpdf[full-gpu]

See below for more details on the installation options.

Core

Contains the core functionality of the library, including token generation and map fragmentation, and rendering to .svg files, and conversion to pdf using rsvg-convert executable.

pip install tokenpdf
PDF

For other PDF backends, add the pdf-rl, pdf-qt, and/or pdf-pr extras:

  • pdf-rl: PDF output using reportlab (default)
    • pip install tokenpdf[pdf-rl]
  • pdf-qt: PDF output using PySide6 (Qt)
    • pip install tokenpdf[pdf-qt]
  • pdf-pr: PDF output using playwright
    • pip install tokenpdf[pdf-pr]
    • Note: playwright install is required to be run before using the playwright backend.
Image Filters

The rembg package is used for background removal. To install it, use either the cpu or gpu extras:

pip install tokenpdf[cpu]

The gpu extra will install onnxruntime-gpu. See that package for details about system requirements.

Full Installation

To install all extras, use either the full or the full-gpu extras:

pip install tokenpdf[full]

For CPU-based and GPU-based installations, respectively.

From source

git clone https://github.com/Dormat2/tokenpdf.git
cd tokenpdf
pip install -r requirements.txt

Command-Line Interface

The library provides both a command-line interface and a Python API. The CLI is the easiest way to get started.

python -m tokenpdf <config_files> [-o OUTPUT] [-v] [-s]
  • config_files: One or more configuration files in TOML, JSON, YAML, or INI format. See examples below, or Configuration Reference for more details. Can only be omitted if -e flag is used.
  • -e: Use the example configuration file (tokenpdf/data/example.toml).
  • -o OUTPUT: The output PDF file (default: output.pdf). If ommited, the output name is derived from the first configuration file.
  • -v: Enable verbose output.
  • -s: Silence most output.

Example usage:

python -m tokenpdf example.toml -o my_tokens.pdf -v

Writing Configuration Files

Configurations define your monsters, their tokens, the maps, and the pdf layout and generation process.

Minimal Configuration: Single Token

TOML Example

output = "single_token.pdf"

[monsters.circle]
name = "Circle Token"
size = "Medium"
image_url = "https://picsum.photos/200"
tokens = [
    { type = "circle", size = "medium", count = 1 }
]

JSON Example

{
  "output": "single_token.pdf",
  "monsters": {
    "circle_token": {
      "name": "Circle Token",
      "size": "Medium",
      "image_url": "https://picsum.photos/200",
      "tokens": [
        { "type": "circle", "size": "medium", "count": 1 }
      ]
    }
  }
}

Adding Features Step-by-Step

1. Multiple Tokens for a single monster

Add multiple tokens for the same monster:

TOML Example

[monsters.circle_token]
name = "Circle Token"
size = "Medium"
image_url = "https://picsum.photos/200"
tokens = [
    { type = "circle", size = "medium", count = 5 }
]

JSON Example

{
  "monsters": {
    "circle_token": {
      "name": "Circle Token",
      "size": "Medium",
      "image_url": "https://picsum.photos/200",
      "tokens": [
        { "type": "circle", "size": "medium", "count": 5 }
      ]
    }
  }
}

Add a standing token for the same monster:

TOML Example

[monsters.circle_token]
name = "Circle Token"
size = "Medium"
image_url = "https://picsum.photos/200"
tokens = [
    { type = "circle", size = "small", count = 5 },
    { type = "standing", size = "medium", count = 5 }
]

Note: The size field is used to determine the token's dimensions in relation to the page size and the system (default: D&D5e) grid sizing (can be overriden). The size can be specified in the monster's configuration, and/or overriden in the token's configuration.


2. Customizing Token Appearance

Scaling:

TOML Example

[monsters.circle_token]
name = "Circle Token"
size = "Medium"
image_url = "https://picsum.photos/200"
tokens = [
    { type = "circle", size = "medium", count = 5, scale = 1.1, scale_rho = 0.1 }
]

JSON Example

{
  "monsters": {
    "circle_token": {
      "name": "Circle Token",
      "size": "Medium",
      "image_url": "https://picsum.photos/200",
      "tokens": [
        { "type": "circle", "size": "medium", "count": 5, "scale": 1.1, "scale_rho": 0.1 }
      ]
    }
  }
}

In this example, the scale field scales the token's size. The scale is determined by a log-normal distribution around 1.1, with a standard deviation of 0.1. This provides a more natural variation in token sizes. Omitting scale_rho will set the scale to a fixed value (1.1)


Global Settings

Customize the entire output, page, and layout behavior. Here’s how to configure some global settings.

1. Output File

Specify the name of the PDF file:

TOML

output = "my_custom_tokens.pdf"

JSON

{
  "output": "my_custom_tokens.pdf"
}

2. Page Settings

Define the paper size, orientation, and margins:

TOML

# General configuration
output = "wsc_{ps}.pdf"
verbose = true
system = "D&D 5e"
compress = true

# Paper settings
page_size = ["A2", "A3", "A4"]
orientation = "portrait"
margin = 0.05
optimize_images_for_dpi = 100
optimize_images_for_quality = 80

# Layout settings
rotation = true

JSON

{
  "output": "wsc_{ps}.pdf",
  "verbose": true,
  "system": "D&D 5e",
  "compress": true,
  "page_size": ["A2", "A3", "A4"],
  "orientation": "portrait",
  "margin": 0.05,
  "optimize_images_for_dpi": 100,
  "optimize_images_for_quality": 80,
  "rotation": true
}

3. Layout Options

Enable token rotation for better page utilization:

TOML

rotation = true

JSON

{
  "rotation": true
}

4. Reference

For a full reference of all available settings, see the Configuration Reference.


Screenshots

  • Example configuration:
    Example Configuration Screenshot

  • Generated PDF:
    Generated PDF Screenshot


Contributing

Contributions are welcome! Feel free to submit issues or pull requests via GitHub.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tokenpdf-0.4.1.tar.gz (71.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

tokenpdf-0.4.1-py3-none-any.whl (74.0 kB view details)

Uploaded Python 3

File details

Details for the file tokenpdf-0.4.1.tar.gz.

File metadata

  • Download URL: tokenpdf-0.4.1.tar.gz
  • Upload date:
  • Size: 71.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.7

File hashes

Hashes for tokenpdf-0.4.1.tar.gz
Algorithm Hash digest
SHA256 bfaf45b9d2fdddbd8003a88f8f7d396fce20dbe3adb07efdab019349c8b5443f
MD5 f780da86ae5bd4029d5f365d30300d16
BLAKE2b-256 c9161b650d33eb082bc5f52eb3631b838a3efb28e4474bc11fd7b10908816131

See more details on using hashes here.

File details

Details for the file tokenpdf-0.4.1-py3-none-any.whl.

File metadata

  • Download URL: tokenpdf-0.4.1-py3-none-any.whl
  • Upload date:
  • Size: 74.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.7

File hashes

Hashes for tokenpdf-0.4.1-py3-none-any.whl
Algorithm Hash digest
SHA256 c59038b0832964068ede576e257f9c973ff991d1a55fc34463531f2a8ebbda88
MD5 244b25a837b4cc45bf3c26b07e6ffa5e
BLAKE2b-256 c93e144459b7acf9c315337c158ed050c3b6356211817f13444ebfe07e8c07ce

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page