python 그림 대량 압축 실현 예시

프로젝트에서 대량으로 그림을 불러오는 데 사용되는데, 그림이 너무 커서 불러오는 속도가 매우 느리기 때문에 파일에 대해 통일된 압축을 해야 한다

1: 패키지 가져오기


from PIL import Image
import os

2: 그림 파일 크기 가져오기


def get_size(file):
  #  :KB
  size = os.path.getsize(file)
  return size / 1024

3: 결합 출력 파일 주소


def get_outfile(infile, outfile):
  if outfile:
    return outfile
  dir, suffix = os.path.splitext(infile)
  outfile = '{}-out{}'.format(dir, suffix)
  return outfile

4: 파일을 지정한 크기로 압축합니다. 150KB, step와 quality는 가장 적합한 수치로 수정할 수 있기를 기대합니다.


def compress_image(infile, outfile='', mb=150, step=10, quality=80):
  """ 
  :param infile:  
  :param outfile:  
  :param mb:  ,KB
  :param step:  
  :param quality:  
  :return:  , 
  """
  o_size = get_size(infile)
  if o_size <= mb:
    return infile
  outfile = get_outfile(infile, outfile)
  while o_size > mb:
    im = Image.open(infile)
    im.save(outfile, quality=quality)
    if quality - step < 0:
      break
    quality -= step
    o_size = get_size(outfile)
  return outfile, get_size(outfile)

5: 그림 사이즈를 수정하고 사이즈와 크기를 동시에 수정할 필요가 있으면 먼저 사이즈를 수정한 다음에 크기를 압축할 수 있다


#Python :778463939
def resize_image(infile, outfile='', x_s=1376):
  """ 
  :param infile:  
  :param outfile:  
  :param x_s:  
  :return:
  """
  im = Image.open(infile)
  x, y = im.size
  y_s = int(y * x_s / x)
  out = im.resize((x_s, y_s), Image.ANTIALIAS)
  outfile = get_outfile(infile, outfile)
  out.save(outfile)


if __name__ == '__main__':
  compress_image(r'D:\learn\space.jpg')
  resize_image(r'D:\learn\space.jpg')
이상은python이 이미지 대량 압축을 실현하는 예시의 상세한 내용입니다. 더 많은python 이미지 대량 압축에 관한 자료는 저희 다른 관련 글에 주목하세요!

좋은 웹페이지 즐겨찾기