mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
20 lines
556 B
CoffeeScript
20 lines
556 B
CoffeeScript
exec = require('child_process').exec
|
|
logger = require("logger-sharelatex")
|
|
|
|
module.exports =
|
|
|
|
compressPng: (localPath, callback)->
|
|
startTime = new Date()
|
|
logger.log localPath:localPath, "optimising png path"
|
|
args = "optipng #{localPath}"
|
|
opts =
|
|
timeout: 20 * 1000
|
|
killSignal: "SIGKILL"
|
|
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)
|
|
|
|
|