이미지의 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/