需要随机生成器的帮助,不知道该怎么称呼第二个问题..请阅读......
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']; ?>">
谢谢....任何帮助感谢!
答案 0 :(得分:4)
您可以将您喜欢的尺寸放在阵列中或使用Mark Baker建议的尺寸。
$sizes = array(150,200,250,300,350,400);
$size = $sizes[array_rand($sizes)];
要显示图像,您需要从图像标记中调用图像生成脚本
<img src='/path/to/image.php' />