Почему imagettfbbox() не может прочитать шрифт в x в строке y?
Тестовое задание:
<?php
ini_set('display_errors', true);
error_reporting(E_ALL);
?>
<pre>
<?php
//putenv('GDFONTPATH=' . realpath('.'));
print_r(gd_info());
echo 'phpuser: ' . get_current_user() . PHP_EOL;
echo 'scriptuser: ' . getmyuid() . PHP_EOL;
echo 'scriptgroup: ' . getmygid() . PHP_EOL;
$files = glob('captcha/fonts/*.ttf');
foreach ($files as $file) {
echo 'file: ' . $file . PHP_EOL;
echo 'fullpath: ' . __DIR__ . '/' . $file . PHP_EOL;
echo 'chmod: ' . decoct(fileperms($file) & 0777) . PHP_EOL;
echo 'fileowner: ' . fileowner($file) . PHP_EOL;
echo 'user: ' . print_r(posix_getpwuid(fileowner($file)), true);
echo 'filegroup: ' . filegroup($file) . PHP_EOL;
echo 'group: ' . print_r(posix_getgrgid(filegroup($file)), true);
echo 'isfile: ' . (is_file($file) ? 'yes' : 'no') . PHP_EOL;
echo 'readable: ' . (is_readable($file) ? 'yes' : 'no') . PHP_EOL;
echo 'writeable: ' . (is_writeable($file) ? 'yes' : 'no') . PHP_EOL;
$size = mt_rand(10, 20);
$angle = mt_rand(-35, 30);
echo 'imagettfbbox with ' . $file . ':';
imagettfbbox($size, $angle, $file, 'a');
echo 'imagettfbbox with ' . str_replace('.ttf', '', $file) . ':';
imagettfbbox($size, $angle, str_replace('.ttf', '', $file), 'a');
echo 'imagettfbbox with ' . __DIR__ . '/' . $file . ':';
imagettfbbox($size, $angle, __DIR__ . '/' . $file, 'b');
echo PHP_EOL;
}
?>
Результат:
Array
(
[GD Version] => bundled (2.1.0 compatible)
[FreeType Support] => 1
[FreeType Linkage] => with freetype
[T1Lib Support] => 1
[GIF Read Support] => 1
[GIF Create Support] => 1
[JPEG Support] => 1
[PNG Support] => 1
[WBMP Support] => 1
[XPM Support] => 1
[XBM Support] => 1
[JIS-mapped Japanese Font Support] =>
)
phpuser: user1
scriptuser: 825
scriptgroup: 820
file: captcha/fonts/assimila.ttf
fullpath: /home/.../captcha/fonts/assimila.ttf
chmod: 644
fileowner: 825
user: Array
(
[name] => user1
[passwd] => x
[uid] => 825
[gid] => 820
[gecos] =>
[dir] => /home/user1
[shell] => /bin/bash
)
filegroup: 820
group: Array
(
[name] => user1
[passwd] => x
[members] => Array
(
[0] => user1
)
[gid] => 820
)
isfile: yes
readable: yes
writeable: yes
imagettfbbox with captcha/fonts/assimila.ttf:
Warning: imagettfbbox(): Could not read font in /home/.../test.php on line 27
imagettfbbox with captcha/fonts/assimila:
Warning: imagettfbbox(): Could not read font in /home/.../test.php on line 29
imagettfbbox with /home/.../captcha/fonts/assimila.ttf:
Warning: imagettfbbox(): Could not read font in /home/.../test.php on line 31
Как видите, я проверил все ответы на эти вопросы, но они не помогли:
- imagettftext не может открыть файл шрифта
- Предупреждение: imagettftext() [function.imagettftext]: не удалось найти / открыть шрифт в /home/a2424901/public_html/index.php в строке 35
- PHP imagettftext (): не удалось найти / открыть шрифт с помощью PHP-библиотеки "Изображение с текстом"
Может быть интересная информация относительно GDFONTPATH
, Если я установлю его на:
putenv('GDFONTPATH=' . realpath('.') . '/captcha/fonts/');
Тогда сообщение об ошибке говорит Could not find/open
вместо Could not read
:
Warning: imagettfbbox(): Could not find/open font in /home/.../test.php on line 27
Из-за этого я не думаю, что установка GDFONTPATH
решает проблему.
PS Сервер использует PHP версии 5.5.38 и LiteSpeed V6.10
1 ответ
Решение
Проблема была решена путем повторной загрузки файлов шрифтов. Они были загружены через Filezilla в режиме ASCII вместо правильного двоичного режима. При этом файлы шрифтов стали поврежденными.
PS я не ставил GDFONTPATH
и он работает со всеми этими путями без проблем:
captcha/fonts/assimila.ttf
captcha/fonts/assimila
/home/{Userpath}/captcha/fonts/assimila.ttf