discourse/app/jobs/regular/resize_emoji.rb

19 lines
365 B
Ruby
Raw Normal View History

module Jobs
class ResizeEmoji < Jobs::Base
def execute(args)
path = args[:path]
return unless File.exists?(path)
2015-02-21 12:37:37 -05:00
opts = {
allow_animation: true,
force_aspect_ratio: SiteSetting.enforce_square_emoji
}
# make sure emoji aren't too big
OptimizedImage.downsize(path, path, 100, 100, opts)
end
end
end