Home
last modified time | relevance | path

Searched refs:escapeshellarg_replacement (Results 1 – 2 of 2) sorted by relevance

/plugin/photogallery/phpThumb/
H A Dphpthumb.class.php1544 $commandline = phpthumb_functions::escapeshellarg_replacement($this->config_imagemagick_path);
1829 $commandline .= ' -density '.phpthumb_functions::escapeshellarg_replacement($this->dpi);
1934 $commandline .= ' -crop '.phpthumb_functions::escapeshellarg_replacement($crop_param);
2018 $commandline .= ' -rotate '.phpthumb_functions::escapeshellarg_replacement($this->ra);
2124 $commandline .= ' -gamma '.phpthumb_functions::escapeshellarg_replacement($amount);
2181 … $commandline .= ' -emboss '.phpthumb_functions::escapeshellarg_replacement((int) $parameter);
2271 $commandline .= ' -blur '.phpthumb_functions::escapeshellarg_replacement($radius);
2281 $commandline .= ' -gaussian-blur '.phpthumb_functions::escapeshellarg_replacement($radius);
2284 $commandline .= ' -gaussian '.phpthumb_functions::escapeshellarg_replacement($radius);
2311 $commandline .= ' -border '.phpthumb_functions::escapeshellarg_replacement((int) $width);
[all …]
H A Dphpthumb.functions.php129 public static function escapeshellarg_replacement($arg) { function in phpthumb_functions