PHP에 freetype을 설치하는 방법: 먼저 "make && make install" 명령을 실행하여 freeType을 포함하는 GD를 설치한 다음 PHP 확장 소스 코드 디렉터리로 전환하고 마지막으로 PHP 서비스를 다시 시작하세요.
권장: "PHP Video Tutorial"
PHP Fatal error: Call to undefined function imagettftext()
错误提示是指GD库中缺少freetype库,你装了GD不一定就支持freetype,很多人理解错误,
freetype 不是一个独立的扩展,是附着在GD库上的。
freeType 공식 다운로드 주소: https://www.freetype.org/download.html
첫 번째 단계는 freeType
./configure --prefix=/usr/local/freetype make && make install
을 설치하는 것입니다. 두 번째 단계 freetype이 포함된 GD 설치
PHP 확장 소스 코드 디렉터리로 전환
/opt/php5/bin/phpize ./configure --with-php-config=/opt/php5/bin/php-config --with-jpeg-dir=/usr/local/jpeg/lib --with-freetype-dir=/usr/local/freetype --enable-gd-native-ttf make && make install
jpeg를 지원하기 위해 gd를 설치해야 하는 경우 https://blog.csdn.net/coolpan123/article/details/72916802
을 참조하세요. gd를 설치하지 않았다면 gd를 넣으십시오. php.ini
에 작성하십시오. 이전에 gd를 설치한 경우 PHP 서비스를 다시 시작하십시오
위 내용은 PHP에 프리타입을 설치하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!