Searched refs:alpha_end (Results 1 – 1 of 1) sorted by relevance
/plugin/reflect/ |
H A D | action.php | 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); [all …]
|