Skip to main content

Render Geometry Dash icons

Project description

gdicons

A Python library to render Geometry Dash icons.

Usage

Import the library like so:

from gdicons import *

Prerequisites

This library requires a Geometry Dash Steam installation, or at the very least, a Resources folder containing the following:

  • An icons folder containing each icon in all three qualities
  • Robot_Animdesc.plist
  • Spider_Animdesc.plist

By default, it will set its resources path to the one included in a default Steam installation. To override this, call this function:

set_resources_path(<path to Resources folder>)

Render an Icon

To render an icon, call this function:

rendered_icon = render_icon(...)

This returns a PIL Image object, which can then be saved to a file.

Parameters

Parameter name Parameter description
gamemode The gamemode to render. Can be one of "cube", "ship", "ball", "ufo", "wave", "robot", "spider", "swing", or "jetpack".
id The ID of the gamemode to render.
primary The primary color of the rendered icon. Can be a hexadecimal string ("#0b172b"), color string ("red"), or Geometry Dash color ID. See GDBrowser's iconkit for a list of Geometry Dash color IDs.
secondary The secondary color of the rendered icon.
glow The glow color of the rendered icon. Can also be False to disable glow, this is default.
quality The texture quality of the rendered icon. A higher quality leads to a higher size. Can be one of "low"/"normal", "hd", or "uhd". Default "uhd".

Usage Example

from gdicons import *

viprin_cube = render_icon(
    gamemode  = "cube",
    id        = 133,
    primary   = "#ffff00",
    secondary = "#b900ff",
    glow      = "#b900ff"
)
nexus_spider = render_icon(
    gamemode  = "spider",
    id        = 13,
    primary   = 9,
    secondary = 12,
    glow      = 12
)

viprin_cube.save("viprin.png")
nexus_spider.save("nexus.png")

Output

A rendered image of Viprin's cube A rendered image of Nexus' spider

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

gdicons-1.2.0.tar.gz (44.3 kB view hashes)

Uploaded Source

Built Distribution

gdicons-1.2.0-py3-none-any.whl (31.9 kB view hashes)

Uploaded Python 3

Supported by

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