Pass filename instead of file object when calling PIL.Image.save()
This commit is contained in:
parent
525e851e17
commit
ea309bff97
@ -143,11 +143,8 @@ class CommonAsciiProcessor(MediaProcessor):
|
|||||||
thumb = converter._create_image(
|
thumb = converter._create_image(
|
||||||
orig_file.read())
|
orig_file.read())
|
||||||
|
|
||||||
with open(tmp_thumb, 'w') as thumb_file:
|
thumb.thumbnail(thumb_size, Image.ANTIALIAS)
|
||||||
thumb.thumbnail(
|
thumb.save(tmp_thumb);
|
||||||
thumb_size,
|
|
||||||
Image.ANTIALIAS)
|
|
||||||
thumb.save(thumb_file)
|
|
||||||
|
|
||||||
thumb_info = {'font': font,
|
thumb_info = {'font': font,
|
||||||
'width': thumb_size[0],
|
'width': thumb_size[0],
|
||||||
|
@ -77,8 +77,7 @@ def resize_image(entry, resized, keyname, target_name, new_size,
|
|||||||
|
|
||||||
# Copy the new file to the conversion subdir, then remotely.
|
# Copy the new file to the conversion subdir, then remotely.
|
||||||
tmp_resized_filename = os.path.join(workdir, target_name)
|
tmp_resized_filename = os.path.join(workdir, target_name)
|
||||||
with open(tmp_resized_filename, 'wb') as resized_file:
|
resized.save(tmp_resized_filename, quality=quality)
|
||||||
resized.save(resized_file, quality=quality)
|
|
||||||
store_public(entry, keyname, tmp_resized_filename, target_name)
|
store_public(entry, keyname, tmp_resized_filename, target_name)
|
||||||
|
|
||||||
# store the thumb/medium info
|
# store the thumb/medium info
|
||||||
|
Loading…
x
Reference in New Issue
Block a user