imagettfbbox(): Could not find/open font
[D:/systems2019/web/login/htdocs/lib/base.php:2261] Base->error() [D:/systems2019/web/login/htdocs/lib/image.php:421] imagettfbbox() [D:/systems2019/web/login/htdocs/app/controllers/cSecurity.php:6] Image->captcha() [D:/systems2019/web/login/htdocs/lib/base.php:1873] cSecurity->captcha() [D:/systems2019/web/login/htdocs/lib/base.php:1673] Base->call() [D:/systems2019/web/login/htdocs/index.php:20] Base->run()
Hi,Please post your code.
$img->captcha('fonts/chock-a-block.ttf',20,4,'SESSION.captcha_code');
I am using xampp, the latest one, portable version
cSecurity.php<?phpclass cSecurity extends Controller {function captcha() {$img = new Image();$img->captcha('chock-a-block.ttf',20,4,'SESSION.captcha_code');$img->render();}}
<?php
$f3 = require('lib/base.php');
$f3->set('DEBUG', 3);
$f3->set('UI', 'app/views/');
$f3->route('GET /',
function() {
$img = new Image();
$img->captcha('fonts/chock-a-block.ttf',16,5,'SESSION.captcha_code');
$img->render();
}
);
$f3->run();
$img->captcha('chock-a-block.ttf',20,4,'SESSION.captcha_code', 'D:/xampp/htdocs/app/views/fonts/');