瀏覽代碼

Use `LANCZOS` instead of deprecated `ANTIALIAS`

pull/1121/head
strarsis 2 年之前
committed by GitHub
父節點
當前提交
644dcbfb56
沒有發現已知的金鑰在資料庫的簽署中 GPG 金鑰 ID: 4AEE18F83AFDEB23
共有 1 個檔案被更改,包括 2 行新增2 行删除
  1. +2
    -2
      utils/multires/generate.py

+ 2
- 2
utils/multires/generate.py 查看文件

@@ -251,7 +251,7 @@ for f in range(0, 6):
os.makedirs(os.path.join(args.output, str(level)))
tiles = int(math.ceil(float(size) / tileSize))
if (level < levels):
face = face.resize([size, size], Image.ANTIALIAS)
face = face.resize([size, size], Image.LANCZOS)
for i in range(0, tiles):
for j in range(0, tiles):
left = j * tileSize
@@ -284,7 +284,7 @@ if args.fallbackSize > 0:
background = Image.new(face.mode[:-1], face.size, colorTuple)
background.paste(face, face.split()[-1])
face = background
face = face.resize([args.fallbackSize, args.fallbackSize], Image.ANTIALIAS)
face = face.resize([args.fallbackSize, args.fallbackSize], Image.LANCZOS)
face.save(os.path.join(args.output, 'fallback', faceLetters[f] + extension), quality = args.quality)

# Clean up temporary files


Loading…
取消
儲存