我想在图像上放置随机点(空间中的星星用于一些有趣的侧面项目)
原文链接:https://www.f2er.com/php/240116.html我有这个简单的脚本.
<?PHP $gd = imagecreatetruecolor(1000,1000); $white = imagecolorallocate($gd,255,255); for ($i = 0; $i < 100000; $i++) { $x = rand(1,1000); $y = rand(1,1000); imagesetpixel($gd,round($x),round($y),$white); } header('Content-Type: image/png'); imagepng($gd); ?>
请记住,这只是用于测试,这就是为什么我将100000置于for循环中,因此它显示了我注意到的模式.我们有100万像素使用,仍然随机X和Y创建此模式:
所以它远非随机.我知道rand不是真正随机的,这就是为什么它对密码学不好.但我找不到有关它如何工作的信息,我应该怎么做以避免这样的模式.