0

需要随机生成器的帮助,不知道第二个问题该怎么称呼..请阅读...

1)我在网上找到了这个 php 图像生成器,效果很好!

<?php
$my_img = imagecreate( rand(150, 400), 80 );
$background = imagecolorallocate( $my_img, rand(0, 255), rand(0, 255), rand(0, 255) );
$text_colour = imagecolorallocate( $my_img, 0, 0, 0 );
$line_colour = imagecolorallocate( $my_img, 128, 255, 0 );
imagestring( $my_img, 4, 30, 25, "thesitewizard.com", $text_colour );
imagesetthickness ( $my_img, 5 );
imageline( $my_img, 30, 45, 165, 45, $line_colour );
header( "Content-type: image/png" );
imagepng( $my_img );
imagecolordeallocate( $line_color );
imagecolordeallocate( $text_color );
imagecolordeallocate( $background );
imagedestroy( $my_img );
?>

我让它随机生成大小和颜色,但我需要更精确的大小......它必须随机生成 150 到 400 之间的图像宽度,一次步进 50 个像素

即... 150 200 250 300 350 400 宽

2)然后呢?然后我将如何拍摄该随机图像并使其显示?

<img src="<?php echo $output['my_img']; ?>">

谢谢....任何帮助表示赞赏!

4

1 回答 1

4

您可以将您喜欢的尺寸放入数组中或使用 Mark Ba​​ker 建议的尺寸。

$sizes = array(150,200,250,300,350,400);
$size = $sizes[array_rand($sizes)];

要显示图像,您需要从图像标签调用图像生成脚本

   <img src='/path/to/image.php' />
于 2013-07-09T13:18:20.357 回答