forked from ScoDoc/ScoDoc
Merge pull request 'Correctif Image.ANTIALIAS' (#683) from lehmann/ScoDoc-Front:sco96 into sco96
Reviewed-on: https://scodoc.org/git/ScoDoc/ScoDoc/pulls/683
This commit is contained in:
commit
7994e9369a
@ -6,7 +6,7 @@ from PIL import Image as PILImage
|
||||
|
||||
def ImageScale(img_file, maxx, maxy):
|
||||
im = PILImage.open(img_file)
|
||||
im.thumbnail((maxx, maxy), PILImage.ANTIALIAS)
|
||||
im.thumbnail((maxx, maxy), PILImage.LANCZOS)
|
||||
out_file_str = io.BytesIO()
|
||||
im.save(out_file_str, im.format)
|
||||
out_file_str.seek(0)
|
||||
@ -20,7 +20,7 @@ def ImageScaleH(img_file, W=None, H=90):
|
||||
if W is None:
|
||||
# keep aspect
|
||||
W = int((im.size[0] * H) / float(im.size[1]))
|
||||
im.thumbnail((W, H), PILImage.ANTIALIAS)
|
||||
im.thumbnail((W, H), PILImage.LANCZOS)
|
||||
out_file_str = io.BytesIO()
|
||||
im.save(out_file_str, im.format)
|
||||
out_file_str.seek(0)
|
||||
|
@ -338,7 +338,7 @@ def scale_height(img, W=None, H=REDUCED_HEIGHT):
|
||||
if W is None:
|
||||
# keep aspect
|
||||
W = int((img.size[0] * H) / img.size[1])
|
||||
img.thumbnail((W, H), PILImage.ANTIALIAS)
|
||||
img.thumbnail((W, H), PILImage.LANCZOS)
|
||||
return img
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user