13 if (isset($this->options[
'optipng'])) {
14 $this->executable = $this->options[
'optipng'];
17 if (is_null($this->executable)) {
18 $this->executable = \Depage\Graphics\Graphics::which(
"optipng");
21 if ($this->executable) {
22 exec($this->executable .
' --version 2>&1', $commandOutput, $returnStatus);
24 preg_match(
"/(\d+).(\d+).(\d+)/", $commandOutput[0], $matches);
26 $this->version = $matches[0];