Lines Matching refs:img
46 public static function applyUnsharpMask(&$img, $amount, $radius, $threshold) { argument
58 $w = imagesx($img);
59 $h = imagesy($img);
77 imagecopy($imgBlur, $img, 0, 0, 0, 0, $w, $h);
85 imagecopy( $imgBlur, $img, 0, 0, 1, 0, $w - 1, $h); // left
86 imagecopymerge($imgBlur, $img, 1, 0, 0, 0, $w , $h, 50); // right
87 imagecopymerge($imgBlur, $img, 0, 0, 0, 0, $w , $h, 50); // center
100 $rgbOrig = imagecolorat($img, $x, $y);
118 $pixCol = imagecolorallocate($img, $rNew, $gNew, $bNew);
119 imagesetpixel($img, $x, $y, $pixCol);
126 $rgbOrig = imagecolorat($img, $x, $y);
141 imagesetpixel($img, $x, $y, $rgbNew);