Image
Image Element - show an image in the window. Should be a GIF or a PNG only
Image(
filename = None,
data = None,
background_color = None,
size = (None, None),
pad = None,
key = None,
tooltip = None
)
Parameter Descriptions
Name | Type | Default | Description |
---|---|---|---|
background_color | str | None | color of background. Can be in #RRGGBB format or a color name "black" |
data | bytes or str or None | None | Raw or Base64 representation of the image to put on button. Choose either filename or data |
filename | str or None | None | image filename if there is a button image. GIFs and PNGs only. |
key | str or int or tuple or object | None | Used with window.find_element and with return values to uniquely identify this element to uniquely identify this element |
pad | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) or int | None | Amount of padding to put around element in pixels (left/right, top/bottom) or ((left, right), (top, bottom)) or an int. If an int, then it's converted into a tuple (int, int) |
size | (int, int) or (None, None) | (None, None) | (width, height) size of image in pixels |
tooltip | str | None | text, that will appear when mouse hovers over the element |
Class Properties
This class has no public properties
Class Methods
def update
update
Changes some of the settings for the Image Element. Must call Window.Read
or Window.Finalize
prior.
Changes will not be visible in your window until you call window.read or window.refresh.
Parameter Descriptions
Name | Type | Default | Description |
---|---|---|---|
data | str or tkPhotoImage | None | Base64 encoded string OR a tk.PhotoImage object |
filename | str | None | filename to the new image to display. |
size | (int, int) | (None, None) | (width, height) size of image in pixels |