ENV:
wand.version.VERSION: 0.6.11
windows server 2022
python 3.8.10
INPUT
from wand.image import Image
with Image(filename='images/hummingbird.jpg' ,units='pixelsperinch') as img: # 330, 252
print(f"size: {img.size}")
print(f"resolution: {img.resolution}")
OUTPUT
size: (330, 252)
resolution: (0.0, 0.0)
ENV:
wand.version.VERSION: 0.6.11
windows server 2022
python 3.8.10
INPUT
OUTPUT
size: (330, 252)
resolution: (0.0, 0.0)