How to reproduce emcconville/wand#133
$ python2.7 t.py
(452L, 300L)
$ python3.3 t.py
(452, 300)
How to reproduce emcconville/wand#133
$ python2.7 t.py
(452L, 300L)
$ python3.3 t.py
(452, 300)
# -*- coding: utf-8 -*- | |
from __future__ import unicode_literals | |
from wand.image import Image | |
with Image(filename=u"Côte d'Ivoire.jpg") as i: | |
print(i.size) |