美文网首页
intervention image 图片切换成圆形

intervention image 图片切换成圆形

作者: 陌丶猿 | 来源:发表于2017-09-13 16:34 被阅读0次

    '''

    $img=  Image::make($avatarUrl)->resize(164,164);

    $new= Image::canvas(164,164);

    $r=$img->width() /2;

    for($x=0;$x<$img->width();$x++) {

    for($y=0;$y<$img->height();$y++) {

    $c=$img->pickColor($x,$y,'array');

    if(((($x-$r) * ($x-$r) + ($y-$r) * ($y-$r)) < ($r*$r))) {

    $new->pixel($c,$x,$y);

    }

    }

    }

    '''

    相关文章

      网友评论

          本文标题:intervention image 图片切换成圆形

          本文链接:https://www.haomeiwen.com/subject/uphlsxtx.html