zoukankan      html  css  js  c++  java
  • php GD 渐变 实例

    <?php
    
    $im = imagecreate(255, 255);
    $bg = imagecolorallocate($im, 0, 0, 0);
    for ($i = 255; $i >= 0; $i--) {
            $color = imagecolorallocate($im, $i, $i, $i);
            imagefilledrectangle($im, 0, $i, 255, 1, $color);
    }
    header("Content-type: image/png");
    imagepng($im);
    imagedestroy($im);
    ?>
    

    效果:

  • 相关阅读:
    spoj705
    bzoj2440
    spoj220
    bzoj2301
    hdu1695
    poj3294
    hdu3518
    poj3693
    函数
    样式
  • 原文地址:https://www.cnblogs.com/zcy_soft/p/2169104.html
Copyright © 2011-2022 走看看