try {$exitCode = $process->run();$commandLine = $process->getCommandLine();$output = $process->getOutput().PHP_EOL.$process->getErrorOutput();if($exitCode == 127) {throw new CommandNotFound(sprintf('Command "%s" not found.', $this->cmd));}if($exitCode !== 0 || stripos($output, 'error') !== false || stripos($output, 'permission') !== false) {throw new Exception(sprintf('Command failed, return code: %d, command: %s, stderr: %s', $exitCode, $commandLine, trim($output)));}} catch(RuntimeException $e) {throw new Exception($e->getMessage(), $e->getCode(), $e);
-rw-r--r-- 10093 1004 1.85KB Feb 23 2021 /var/www/vhosts/blog.symbaloo.com/httpdocs/_app/vendor/ps/image-optimizer/src/ImageOptimizer/Command.php
/var/www/vhosts/blog.symbaloo.com/httpdocs/_app/vendor/ps/image-optimizer/src/ImageOptimizer/Command.php
if($this->extraArgs) {$customArgs = array_merge(is_callable($this->extraArgs) ? call_user_func($this->extraArgs, $filepath) : $this->extraArgs,$customArgs);}$this->command->execute($customArgs);}}
);if($outputFilepath !== $filepath) {copy($filepath, $outputFilepath);$filepath = $outputFilepath;}$this->optimizer->optimize($filepath);}public function unwrap(): Optimizer{return $this->optimizer instanceof WrapperOptimizer ? $this->optimizer->unwrap() : $this->optimizer;}}
$this->optimizer = $optimizer;$this->logger = $logger;}public function optimize(string $filepath): void{try {$this->optimizer->optimize($filepath);} catch (Exception $e) {$this->logger->error('Error during image optimization. See exception for more details.', [ 'exception' => $e ]);}}public function unwrap(): Optimizer{
$image->save($this->cacheFolder . '/' . $this->cfName . '_social' . '.' . $ext);} else {$image = new ImageResize($path);$image->resizeToWidth(1200);$image->save($resizedPath);}$customOptimizer = $factory->get('compress_image')->optimize($resizedPath);if ($ext == 'png') {$img = imagecreatefrompng($resizedPath);} else {$img = imagecreatefromjpeg($resizedPath);}
}$optimizerChain = OptimizerChainFactory::create();if ($this->is_social) {$this->copyImg($url, $this->cached_social_url);$this->imgResize($this->cached_social_url, true);} else {$this->copyImg($url, $this->cachedurl);$this->imgResize($this->cachedurl);}}}function copFakeImg($src){
$this->theme = isset($params['theme']) ? $params['theme'] : '';$this->module = isset($params['module']) ? $params['module'] : '';$this->img = isset($params['image']) ? $params['image'] : '';$this->cfName = '';$this->cacheFolder = '';$this->utils = new Utilities();$this->conn = new ConnectionMngr();$this->createImage();$this->serve();die();}private function copyImg($url, $to){$ch = curl_init($url);
<?phprequire_once('../_app/_constants.php');use Aristoteles\Controllers\Images;new Images([], $_REQUEST);