israel-dryer / ttkbootstrap

A supercharged theme extension for tkinter that enables on-demand modern flat style themes inspired by Bootstrap.
MIT License
1.9k stars 381 forks source link

Image zoom error #475

Closed xuehangcang closed 10 months ago

xuehangcang commented 1 year ago

Desktop (please complete the following information):

python -m ttkcreator

The following exception occurred during my execution of the above command: Mac os m2 Operating System

AttributeError: module 'PIL.Image' has no attribute 'CUBIC'. Did you mean: 'BICUBIC'?

Describe the bug

python -m ttkcreator

The following exception occurred during my execution of the above command: Mac os m2 Operating System

AttributeError: module 'PIL.Image' has no attribute 'CUBIC'. Did you mean: 'BICUBIC'?

To Reproduce

No response

Expected behavior

No response

Screenshots

No response

Additional context

No response

vinzjaystone commented 1 year ago

I encountered the same error, but it's a simple issue to address. All you need to do is replace "CUBIC" with "BICUBIC" on the specified line number in the .py file indicated in the error message.

Hope this helps.