코드 복사 코드는 다음과 같습니다.
////$strimgsrc = file_get_contents("http :// 127.0.0.1/5307754.jpg");
////$imgsrc = imagecreatefromstring($strimgsrc);
$imgsrc = imagecreatefromjpeg("5307754.jpg");
$imgsrcw = Imagesx($ imgsrc);
$imgsrch = imagey($imgsrc);
$width = 30;
$x2 = $imgsrcw - $x1 - 20; >$y1 = ($imgsrch - $width) - 2;
$y2 = $y1 $width;
$steps = $x2 - $x1>for($i = 0; $i < ; $steps ; $i )
{
$alphax = round($i/($steps/127))
if($alphax >= 128)
$alphax = 127 ;
$alpha = imagecolorallocatealpha($imgsrc, 255, 255, 255, $alphax)
imagefilled직사각형($imgsrc, ($i $x1), $y1, ($i $x1 1), $y2 , $alpha )
}
header('content-type: image/jpeg')
imagejpeg($imgsrc)
imagedestroy($imgsrc)?> 🎜>
위 내용은 ppt 그림 투명도 내용을 포함하여 ppt 그림 투명도 PHP 그림에 투명도 그라디언트를 추가하는 효과를 소개하고 있어 PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.