width = 200; $captcha->hight = 50; $captcha->leng = 6; try { $imageData = $captcha->get_captcha(); } catch (\Throwable $e) { $response->getBody()->write("Captcha error: " . $e->getMessage()); return $response->withStatus(500)->withHeader('Content-Type', 'text/plain'); } $response->getBody()->write($imageData); return $response->withHeader('Content-Type', 'image/png'); } }