Skip to content

Commit

Permalink
Merge pull request #1774 from sdbds/avif_get_imagesize
Browse files Browse the repository at this point in the history
Support avif get image size
  • Loading branch information
kohya-ss authored Nov 11, 2024
2 parents 8fac3c3 + 26bd454 commit 92482c7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions library/train_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -1405,11 +1405,11 @@ def get_image_size(self, image_path):
image_size = imagesize.get(image_path)
if image_size[0] <= 0:
# imagesize doesn't work for some images, so use cv2
img = cv2.imread(image_path)
if img is not None:
image_size = (img.shape[1], img.shape[0])
else:
logger.warning(f"failed to get image size: {image_path}")
try:
with Image.open(image_path) as img:
image_size = img.size
except Exception as e:
logger.warning(f"failed to get image size: {image_path}, error: {e}")
image_size = (0, 0)
return image_size

Expand Down

0 comments on commit 92482c7

Please sign in to comment.