I am getting this error "UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 17: ordinal not in range(128)" when I try to merge this image "La Pocatière.png".
Python 2.7.11
bg_img = Image(filename='C:/Pocatière.png')
bg_img.resize(1200,628)
bg_img.composite('C:/test.png', left=0, top=0)
when I do print I can see the right unicode:
bg_img
u'La Pocati\xe8re.png'
>>> print bg_img
La Pocatière.png
Not sure how I can bypass this issue?
Answer: After doing lots research and in discussion with my colleague we were able to solve this issue by setting : text_encoding = 'utf-8' For some reason wand wasn't able to set it automatically