You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$captcha = new CaptchaBuilder('12345');
var_dump($captcha->getPhrase()); // 12345
var_dump($captcha->inline());exit; // error: imagejpeg() expects parameter 1 to be resource, null given
The text was updated successfully, but these errors were encountered:
I need to add one line code after newing a CaptchaBuilder, just like:
$captcha = new CaptchaBuilder('12345');
$captcha = $captcha->build();// use GD to generate a picture
var_dump($captcha->getPhrase()); // 12345
var_dump($captcha->inline()); // data:image/jpeg;base64,....
The text was updated successfully, but these errors were encountered: