Thumbnail-method for both photo and video.

patches
Joachim Tingvold 2015-05-05 00:08:37 +02:00
parent 80bb5258d6
commit ff7e540eb8
1 changed files with 3 additions and 0 deletions

View File

@ -296,8 +296,11 @@ class Photo(object):
elif self._orientation == 8:
# Rotation 90
mirror = image.transpose(Image.ROTATE_90)
image = mirror
self._thumbnail(image, original_path, thumb_path, original_path, size, square)
def _thumbnail(image, original_path, thumb_path, original_path, size, square):
thumb_path = os.path.join(thumb_path, image_cache(self._path, size, square))
info_string = "%s -> %spx" % (os.path.basename(original_path), str(size))
if square: