mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-23 20:18:00 +01:00
skip optipng for animations
This commit is contained in:
parent
192cb727a0
commit
4e7928ab32
1 changed files with 7 additions and 2 deletions
|
@ -15,8 +15,13 @@ defmodule Philomena.Processors.Png do
|
|||
}
|
||||
end
|
||||
|
||||
def post_process(_analysis, file) do
|
||||
%{replace_original: optimize(file)}
|
||||
def post_process(analysis, file) do
|
||||
if analysis.animated? do
|
||||
# libpng has trouble with animations, so skip optimization
|
||||
%{}
|
||||
else
|
||||
%{replace_original: optimize(file)}
|
||||
end
|
||||
end
|
||||
|
||||
def intensities(_analysis, file) do
|
||||
|
|
Loading…
Reference in a new issue