Lines Matching refs:width

2303 									@list($width, $rX, $rY, $color) = explode('|', $parameter);
2304 $width = (int) $width;
2307 if ($width && !$rX && !$rY) {
2311 $commandline .= ' -border '.phpthumb_functions::escapeshellarg_replacement((int) $width);
2315 …nctions::escapeshellarg_replacement(($matches[1] - (2 * $width)).'x'.($matches[2] - (2 * $width)).…
2317 …nctions::escapeshellarg_replacement(($matches[1] - (2 * $width)).'x'.($matches[2] - (2 * $width)))…
2890 @list($width, $color1, $color2) = explode('|', $parameter, 3);
2891 $phpthumbFilters->Bevel($this->gdimg_output, $width, $color1, $color2);
2912 …@list($bands, $colors, $width, $height, $alignment, $opacity, $margin_x, $margin_y) = explode('|',…
2915 $width = ($width ? $width : 0.25);
2921 …$phpthumbFilters->HistogramOverlay($this->gdimg_output, $bands, $colors, $width, $height, $alignme…
2935 @list($distance, $width, $color, $angle, $fade) = explode('|', $parameter, 5);
2936 $phpthumbFilters->DropShadow($this->gdimg_output, $distance, $width, $color, $angle, $fade);
3748 public function SourceImageIsTooLarge($width, $height) { argument
3754 return (bool) (($width * $height * 5) > $available_memory);
3756 return (bool) (($width * $height) > $this->config_max_source_pixels);
4336 public function ErrorImage($text, $width=0, $height=0, $forcedisplay=false) { argument
4337 $width = ($width ? $width : $this->config_error_image_width);
4382 $LinesOfText = explode("\n", @wordwrap($text, floor($width / $FontWidth), "\n", true));
4395 } elseif ($gdimg_error = imagecreate($width, $height)) {
4399 imagefilledrectangle($gdimg_error, 0, 0, $width, $height, $background_color);