0422 // draw some shape-lines through the image
0423 for($a = 0;$a < BS_SHAPE_LINES;$a++)
0424 {
0425 $factor = mt_rand(BS_SHAPE_MIN_SIZE,BS_SHAPE_MAX_SIZE);
0426 $x = mt_rand(BS_WIDTH / 3,2 * BS_WIDTH / 3);
0427 $y = mt_rand(BS_WIDTH / 3,2 * BS_HEIGHT / 3);
0428 $color = $this->get_readable_random_color($img,$this->_bg);
0429 $down = mt_rand(0,1) == 0;
0430 $right = mt_rand(0,1) == 0;
0431 for($i = 0;$i < BS_SHAPE_LINE_LENGTH;$i++)
0432 {
0433 $this->draw_shape($img,$x,$y,$factor,$factor,$color);