乱数発生器のヘルプが必要で、2 番目の質問を何と呼べばよいかわかりません。お読みください...
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 );
?>
サイズと色をランダムに生成するようにしましたが、サイズをより正確にする必要があります...一度に50ピクセルずつステップする150から400の間の画像幅をランダムに生成する必要があります
つまり... 150 200 250 300 350 400 ワイド
2) では?次に、そのランダムな画像を取得して表示するにはどうすればよいですか?
<img src="<?php echo $output['my_img']; ?>">
ありがとう....どんな助けでも感謝します!