make image cropping optional

This commit is contained in:
Albert Yi
2018-07-09 10:06:20 -07:00
parent ac28c92fbd
commit 4d4f36c2c8
4 changed files with 11 additions and 1 deletions

View File

@@ -65,6 +65,8 @@ class PixivUgoiraConverter
end
def self.generate_crop(ugoira_file)
return nil unless Danbooru.config.enable_image_cropping
file = Tempfile.new(["ugoira-crop", ".zip"], binmode: true)
zipfile = Zip::File.new(ugoira_file.path)
zipfile.entries.first.extract(file.path) { true } # 'true' means overwrite the existing tempfile.