Add coalesce option to avatar and header convert processor (#4552)

Resolve #3199
This commit is contained in:
Yamagishi Kazutoshi 2017-08-08 22:49:14 +09:00 committed by Eugen Rochko
parent ec3be87a2b
commit 81c41d8681
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ module AccountAvatar
class_methods do
def avatar_styles(file)
styles = { original: '120x120#' }
styles[:static] = { format: 'png' } if file.content_type == 'image/gif'
styles[:static] = { format: 'png', convert_options: '-coalesce' } if file.content_type == 'image/gif'
styles
end

View File

@ -8,7 +8,7 @@ module AccountHeader
class_methods do
def header_styles(file)
styles = { original: '700x335#' }
styles[:static] = { format: 'png' } if file.content_type == 'image/gif'
styles[:static] = { format: 'png', convert_options: '-coalesce' } if file.content_type == 'image/gif'
styles
end