GD Library imagettftext получает проблему в тексте на языке гуджарати - PullRequest
0 голосов
/ 27 января 2019

Я использовал Библиотека GD для создания «текста на изображении».Я сталкиваюсь с одной проблемой, которая заключается в том, что я передаю текст на гуджарати, но получаю неправильный вывод, как показано ниже:

Я хочу вот так

enter image description here

и получаю:

enter image description here

Мой код:

        $textBox = imagettfbbox($fontSize, $angle, $font, $txt);

        $textWidth = abs(max($textBox[2], $textBox[5]));

        $textHeight = abs(max($textBox[5], $textBox[7]));

        $x = (imagesx($this->img) - $textWidth)/2;

        $y = ((imagesy($this->img) + $textHeight)/$h)-($lines-2)*$textHeight;

        $lines = $lines-1;

        // Added this line from SO answer.
        $txt = mb_convert_encoding($txt, "HTML-ENTITIES", "UTF-8");
        $txt = preg_replace('~^(&([a-zA-Z0-9]);)~', htmlentities('${1}'), $txt);

        //add some shadow to the text
        imagettftext($this->img, $fontSize, $angle, $x + 2, $y + 1, $white, $font, $txt);

        //add the text
        imagettftext($this->img, $fontSize, $angle, $x, $y, $maroon, $font, $txt);

Я уже пробовал этот ответ в приведенном выше кодено не сработало.

Может кто-нибудь помочь мне, пожалуйста?

1 Ответ

0 голосов
/ 05 февраля 2019

Я создал пример для вашего текста, я использовал другой шрифт.Вам необходимо сопоставить сопоставление символов для отображения правильного текста:

<?php
header('Content-Type: image/png');

// Create the image
$im = imagecreatetruecolor(400, 30);

// Create some colors
$white = imagecolorallocate($im, 255, 255, 255);
$grey = imagecolorallocate($im, 128, 128, 128);
$black = imagecolorallocate($im, 0, 0, 0);
imagefilledrectangle($im, 0, 0, 399, 29, $white);

// The text to draw
$text = 'xF]EZF+L';
// Replace path by your own font path
$font = __DIR__ . '/LMG-Arun.ttf';

// Add some shadow to the text
imagettftext($im, 20, 0, 11, 21, $grey, $font, $text);

// Add the text
imagettftext($im, 20, 0, 10, 20, $black, $font, $text);

// Using imagepng() results in clearer text compared with imagejpeg()
imagepng($im);
imagedestroy($im);

Вы можете добавить свой шрифт и стиль.Для отображения символов следуйте URL: https://fonts.webtoolhub.com/font-n48283-lmg-arun.aspx

Вывод:

enter image description here

...