0

我有以下 PHP 方法,可以在新用户首次注册时生成个​​人资料图像,然后再上传自己的图像。它所做的只是为它们创建一个色彩鲜艳的正方形 - 在显示没有个人资料照片的用户列表时,使界面看起来更有趣。

我怎样才能适应这种方法,以便它创建一个随机颜色的棋盘?像这样的东西:http: //krazydad.com/bestiary/thumbs/random_pixels.jpg

public function generate_random_image($filename, $w = 200, $h = 200, $chosen_color = NULL) {

        if(!$chosen_color) {
            $color_options = Array("#6f0247", "#FF0569", "#FFF478", "#BAFFC0", "#27DB2D", "#380470", "#9D69D6");
            $random        = rand(0,sizeof($color_options));
            $chosen_color  = $color_options[$random];       
        }

        $rgb   = self::hex2rgb($chosen_color);              
        $image = imagecreatetruecolor($w, $h);

        for($row = 1; $row <= $h; $row++) {
            for($column = 1; $column <= $w; $column++) {    

               $color = imagecolorallocate ($image, $rgb[0] , $rgb[1], $rgb[2]);

               imagesetpixel($image,$column - 1 , $row - 1, $color);
            }

            $row_count++;
        }

        $filename = APP_PATH.$filename;

        imagepng($image, $filename);

        return $chosen_color;
    }
4

2 回答 2

2

你改变一下怎么样

$color = imagecolorallocate ($image, $rgb[0] , $rgb[1], $rgb[2]);

$color = imagecolorallocate ($image, rand(0,255), rand(0,255), rand(0,255));

然后,每个像素都有自己的颜色。只需绘制一个小图像,然后按 200% 或 300%(或其他任意数字)缩放,您就会得到像您链接的图像一样漂亮的大块像素。

于 2012-09-12T08:32:53.317 回答
0

在迭代$rows 和$columns 时,您应该将步长增加到所需的像素大小,并在每次迭代时选择另一种颜色。

像素宽度 = 20x20 的示例:

    $pixel = 20;
    for($row = 0; $row <= $h / $pixel; $row++) {
        for($column = 0; $column <= $w/ $pixel; $column++) {    
           $rgb   = self::hex2rgb($color_options[rand(0,sizeof($color_options))]); 
           $color = imagecolorallocate ($image, $rgb[0] , $rgb[1], $rgb[2]);

           imagefilledrectangle(
               $image,
               $column*$pixel,
               $row*pixel,
               $column*$pixel+$pixel,
               $row*pixel+$pixel, 
               $color
           );
        }
    }
于 2012-09-12T08:39:17.873 回答