I am using PIL to resize some images. I would like to keep the EXIF information and I found here how to do so.
But, I doesn't seams to work with my Nikon files :
File "/Library/Python/2.5/site-packages/jpeg/jpeg.py", line 177, in setExif
return _write(exif.binary(), file, exif.jpegMarker)
File "/Library/Python/2.5/site-packages/jpeg/jpeg.py", line 108, in _write
lenHex = util.setNr(len(value)+2, "short") #the length on 2 bytes
File "/Library/Python/2.5/site-packages/jpeg/util.py", line 50, in setNr
val = struct.pack(frm, nr)
File "/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/struct.py", line 63, in pack
return o.pack(*args)
struct.error: short format requires SHRT_MIN <= number <= SHRT_MAX
Do you know how I can fix this ?
