Localhost değil canlı sunucuda çalışan Fontlar

0 Cevap php

Ben bir resmin üzerine bir metin oluşturmak için imagettftext() kullanıyorum. Ben Times New Roman yazı tipi, benim geliştirme makinede çalışan para cezası uygulaması değil, canlı ortamda kullanılabilir.

Adivce Lütfen. Nedeniyle benim dev etmektir. windows makine ve canlı linux?

Lütfen Yardım

Gerçek sorun benim locahost "Canavar" belirir fakat canlı sunucu "Mo nster" Bu da O ile ancak diğer alfabe ile değil sadece metin olduğunu ...

$font = './fonts/times.ttf';    

$bbox = imagettfbbox(30, 0, $font, $word);

$x = $bbox[0] + (imagesx($src) / 2) - ($bbox[4] / 2);
$y = $bbox[1] + (imagesy($src) / 2) - ($bbox[5] / 2)+212;

imagettftext($src, 30, 0, $x, $y, $color, $font, $word);

$bbox2 = imagettfbbox(18, 0, $font, $definition);

$x = $bbox2[0] + (imagesx($src) / 2) - ($bbox2[4] / 2);
$y = $bbox2[1] + (imagesy($src) / 2) - ($bbox2[5] / 2)+245;

imagettftext($src, 18, 0, $x, $y, $white, $font, $definition);

0 Cevap