200字范文,内容丰富有趣,生活中的好帮手!
200字范文 > ppt图片透明度 php 图片上添加透明度渐变的效果

ppt图片透明度 php 图片上添加透明度渐变的效果

时间:2022-05-17 16:32:51

相关推荐

ppt图片透明度 php 图片上添加透明度渐变的效果

后端开发|php教程

ppt图片透明度

后端开发-php教程

复制代码 代码如下:

asp源码api,vscode识别指针和对象,ubuntu 系统路径,tomcat内存上不去,csdn反爬虫,php天气预报源码,天门便宜的seo推广价格,职称网站源码,dede utf8模板lzw

<?php

////$strimgsrc = file_get_contents(“http://127.0.0.1/5307754.jpg”);

////$imgsrc = imagecreatefromstring($strimgsrc);

$imgsrc = imagecreatefromjpeg(“5307754.jpg”);

$imgsrcw = imagesx($imgsrc);

$imgsrch = imagesy($imgsrc);

$width = 30;

$x1 = 2;

$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))+60;

if($alphax >= 128)

$alphax = 127;

$alpha = imagecolorallocatealpha($imgsrc, 255, 255, 255, $alphax);

imagefilledrectangle($imgsrc, ($i+$x1), $y1, ($i+$x1+1), $y2, $alpha);

}

header(‘content-type: image/jpeg’);

imagejpeg($imgsrc);

imagedestroy($imgsrc);

?>

商之翼 多商户 源码,ubuntu进行密码重置,tomcat恢复的视频,ESP8266 爬虫,传智播客php学习技术,黑色嘉宾seolzw

linux下socket通信源码,ubuntu突然无法启动,安卓版的tomcat,javascript渲染爬虫,php插入语句,黄岛seo优化按天扣费多少钱lzw

以上就介绍了ppt图片透明度 php 图片上添加透明度渐变的效果,包括了ppt图片透明度方面的内容,希望对PHP教学有兴趣的朋友有所帮助。

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。