본문 바로가기
python

pillow image rotate 검정색 공백 없이 파이썬 이미지 회전

by 타닥타닥 토다토닥 부부 2023. 4. 15.
반응형

pillow image rotate 검정색 공백 없이 파이썬 이미지 회전

pillow image rotate with no black space

  • img.rotate 옵션인 expand를 True로 정성해두어야 검정색 공백 없이 회전 됩니다.
from PIL import Image

# Open the image file
img = Image.open('image.jpg')

# Rotate the image by 45 degrees clockwise
img_rotated = img.rotate(45, expand=True)

# Save the rotated image
img_rotated.save('image_rotated.jpg')
반응형

댓글