Changes between Initial Version and Version 1 of Ticket #33240


Ignore:
Timestamp:
Oct 29, 2021, 9:02:50 AM (3 years ago)
Author:
NKSM
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #33240 – Description

    initial v1  
    3737**This works well**:
    3838
    39 `width, height = PillowImage.open(image).size`
     39{{{
     40from PIL import Image as PillowImage
     41width, height = PillowImage.open(image).size
     42}}}
     43
     44
Back to Top