Changes between Initial Version and Version 1 of Ticket #33240
- Timestamp:
- Oct 29, 2021, 9:02:50 AM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #33240 – Description
initial v1 37 37 **This works well**: 38 38 39 `width, height = PillowImage.open(image).size` 39 {{{ 40 from PIL import Image as PillowImage 41 width, height = PillowImage.open(image).size 42 }}} 43 44