overleaf/services/filestore/app/coffee/ImageOptimiser.coffee

21 lines
556 B
CoffeeScript
Raw Normal View History

exec = require('child_process').exec
2014-02-14 11:39:05 -05:00
logger = require("logger-sharelatex")
module.exports =
compressPng: (localPath, callback)->
startTime = new Date()
logger.log localPath:localPath, "optimising png path"
args = "optipng #{localPath}"
opts =
2014-02-20 06:45:51 -05:00
timeout: 20 * 1000
killSignal: "SIGKILL"
2014-02-19 09:01:53 -05:00
exec args, opts,(err, stdout, stderr)->
if err?
logger.err err:err, stderr:stderr, localPath:localPath, "something went wrong converting compressPng"
else
logger.log localPath:localPath, "finished compressPng file"
callback(err)
2014-02-14 11:39:05 -05:00