Lines Matching defs:height
63 public function resize($width, $height)
65 if ($width == 0 && $height == 0) {
69 if ($height == 0) $height = '';
71 $size = $width . 'x' . $height;
82 public function crop($width, $height)
84 if ($width == 0 && $height == 0) {
88 if ($width == 0) $width = $height;
89 if ($height == 0) $height = $width;
91 $size = $width . 'x' . $height;