Lines Matching refs:alpha_end
105 $alpha_end = str_replace('%', '', $_REQUEST['fade_end']);
106 $alpha_end = (int) (127 * $alpha_end / 100);
108 $alpha_end = (int) $_REQUEST['fade_end'];
110 if ($alpha_end < 1 || $alpha_end > 127) {
111 $alpha_end = $this->getConf('fade_end');
115 $alpha_end = $this->getConf('fade_end');
119 $alpha_end = 127 - $alpha_end;
136 … $output = $this->imagereflection($source, $width, $height, $new_height, $alpha_start, $alpha_end);
222 … imagereflection($src_img, $src_width, $src_height, $reflection_height, $alpha_start, $alpha_end) { argument
236 $alpha_length = abs($alpha_start - $alpha_end);
248 … if ($alpha_start > $alpha_end) { $alpha_calc = (int) ($alpha_start - ($pct * $alpha_length)); }