Skip to content

Commit

Permalink
Merge 988b3bb into a2560e6
Browse files Browse the repository at this point in the history
  • Loading branch information
thijstriemstra committed Dec 30, 2019
2 parents a2560e6 + 988b3bb commit 5b7c454
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wand/image.py
Expand Up @@ -9110,7 +9110,7 @@ class ProfileDict(ImageProperty, abc.MutableMapping):
with Image(filename='photo.jpg') as img:
# Extract EXIF
with open('exif.bin', 'wb') as payload:
payload.write(img.profiles['exif])
payload.write(img.profiles['exif'])
# Import ICC
with open('color_profile.icc', 'rb') as payload:
img.profiles['icc'] = payload.read()
Expand Down

0 comments on commit 5b7c454

Please sign in to comment.