wmcbrine / pytivo

pyTivo is both an HMO and GoBack server. Similar to TiVo Desktop pyTivo loads many standard video compression codecs and outputs mpeg2 video to the TiVo. However, pyTivo is able to load MANY more file types than TiVo Desktop.
http://pytivo.org/
127 stars 42 forks source link

Cropped photos when rotating using the Photo Plugin #32

Open Someone10000 opened 4 years ago

Someone10000 commented 4 years ago

When using the Photo plugin to view a rotated photo some get cropped if the rotation is not the same size as the original photo. An easy fix to this problem is to change the following code located in the photo.py file:

pic = pic.rotate(rot)

To:

pic = pic.rotate(rot, expand=1)