Image Helpers
rerun
class ImageEncoded
Bases: AsComponents
A monochrome or color image encoded with a common format (PNG, JPEG, etc.).
The encoded image can be loaded from either a file using its path
or
provided directly via contents
.
def __init__(*, path=None, contents=None, format=None, draw_order=None)
Create a new image with a given format.
PARAMETER | DESCRIPTION |
---|---|
path |
A path to a file stored on the local filesystem. Mutually
exclusive with |
contents |
The contents of the file. Can be a BufferedReader, BytesIO, or
bytes. Mutually exclusive with |
format |
The format of the image file. If not provided, it will be inferred from the file extension.
TYPE:
|
draw_order |
An optional floating point value that specifies the 2D drawing order. Objects with higher values are drawn on top of those with lower values.
TYPE:
|