Como ativar o t1lib?

1

Usando o CentOS el6.x86_64. Eu instalei t1lib desta maneira:

  1. Instalando o Repositório RPMForge

    wget http://packages.sw.be/rpmforge-release/rpmforge-release-0.5.2-2.el6.rf.x86_64.rpm
    rpm -Uvh rpmforge-release-0.5.2-2.el6.rf.x86_64.rpm
    
  2. Importando a chave do repositório RPMForge

    wget http://dag.wieers.com/rpm/packages/RPM-GPG-KEY.dag.txt
    rpm --import RPM-GPG-KEY.dag.txt
    
  3. Por fim, instale t1lib

    yum --enablerepo=rpmforge install t1lib
    

Pacote instalado - sem problemas

Q. Preciso fazer mais alguma coisa para "ativar" t1lib ?

Quando eu verifico phpinfo , não é suposto mostrar em "GD"? Eu não estou vendo isso lá.

    
por user74670 07.07.2014 / 02:22

1 resposta

0

Há este comentário no site do PHP sobre a biblioteca t1lib .

Note: This function is only available if PHP is compiled using --with-t1lib[=DIR] .

Fonte: link

Encontrei esse link quando estava olhando o site do projeto t1lib .

t1lib is useful for adding text to images using the gd library. When t1lib and gd are combined with an Apache web server that is powered by the web scripting language php, web developers can easily add captions, graph legends, logos, copyright notices, etc to images. See the php documentation for an example snippet of php code using t1lib to lay some text on an image: php function imagepstext (the example code is in the user notes dated 22-May-2001 at the very bottom of the page)

Fonte: link

Verificando uma compilação para suporte a t1lib

Se estivesse presente, a execução desse comando mostraria:

$ php -i |& grep t1lib

Minha compilação não inclui também.

Reconstruindo o PHP

Se você quiser, terá que reconstruir o PHP. Você pode seguir estas instruções aproximadamente sobre como reconstruir o PHP RPM.

por 07.07.2014 / 14:26

Tags