이미지 사이즈 확인하기(폭, 너비)

hyuckhoon.ko·2020년 12월 10일
0

What I learned in first year

목록 보기
11/146

이미지의 width, height를 확인해보자.

image_list = ProductImage.objects.filter(product__product_status_id=6)
for each in image_list:
    img = Image.open(each.image_url)
    width, height = img.size
    print(width, height)

결과



제품 이미지의 사이즈를 판별해주는 함수를 구현한 후,
사이즈별 적절한 워터마크 이미지를 선택해주는 부분을 구현 계획



출처: https://www.geeksforgeeks.org/python-pil-image-open-method/

0개의 댓글