diff --git a/src/Captcha.php b/src/Captcha.php index 56676af..8a0ce49 100644 --- a/src/Captcha.php +++ b/src/Captcha.php @@ -220,7 +220,7 @@ public function create(string $config = null, bool $api = false): Response foreach ($text as $index => $char) { - $x = $this->fontSize * ($index + 1) * mt_rand(12, 16) / 10 * ($this->math ? 1 : 1.5); + $x = $this->fontSize * ($index + 1) * ($this->math ? 1 : 1.5); $y = $this->fontSize + mt_rand(10, 20); $angle = $this->math ? 0 : mt_rand(-40, 40);