Python Forum

Full Version: howto get size of a ctk image?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hi, I have a CTkImage that needs heigth and width size of image.
Guess I have to use cget but doesnt find parameters.
my_image.cget(?,?)
Anyone?

my_image = customtkinter.CTkImage(light_image=Image.open(var1),size=(h, w))
    image_label = customtkinter.CTkLabel(window, image=my_image, text="")
"size". my_image.cget("size") returns the size attribute (width, height) of one of the images. The light and dark images have to be the same size, so it doesn't matter which.

You could also ask for one of the images and then ask it for the size.
image.cget("light_image").size
That is how you know to use "size" as the attribute for cget. PIL.Image.size returns the size of the image. CTkImage.cget("size") returns the size attribute of the light or dark image.
(Oct-03-2023, 03:33 AM)deanhystad Wrote: [ -> ]"size". my_image.cget("size") returns the size attribute (width, height) of one of the images. The light and dark images have to be the same size, so it doesn't matter which.

You could also ask for one of the images and then ask it for the size.
image.cget("light_image").size
That is how you know to use "size" as the attribute for cget. PIL.Image.size returns the size of the image. CTkImage.cget("size") returns the size attribute of the light or dark image.
Thank You. I missed the mention in documentation that images are PIL objects at first read.