convert_cached_image()

convert_cached_image()#

Convert non-py5 image objects into Py5Image objects, but cache the results.

Examples#

from pathlib import Path


svg_file = Path("data/us_map.svg")


def setup():
    py5.size(200, 200)


def draw():
    py5.background(204)
    py5_image = py5.convert_cached_image(svg_file, scale=0.1)
    py5.image(py5_image, py5.mouse_x, py5.mouse_y)

Description#

Convert non-py5 image objects into Py5Image objects, but cache the results. This method is similar to convert_image() with the addition of an object cache. Both methods facilitate py5 compatibility with other commonly used Python libraries.

See convert_image() for method details.

Converting objects to Py5Image objects can sometimes be slow. Usually you will not want to repeatedly convert the same object in your draw() function. Writing code to convert an object one time in setup() (with a global directive) to be later used in your draw() function can be a bit tedious. This method lets you write simpler code.

Your object must be hashable for object caching to work. If your object is not hashable, it cannot be cached and you will receive a warning. If you want py5 to ignore a previously cached object and force a re-conversion, set the force_conversion parameter to True.

Signatures#

convert_cached_image(
    obj: Any,  # object to convert into a Py5Image object
    force_conversion: bool = False,  # force conversion of object if it is already in the cache
    **kwargs: dict[str, Any]
) -> Py5Image

Updated on June 14, 2024 01:52:20am UTC