I am trying to print String of Russian Language in image, but it shows nothing, in this example, only 123 english is shown,здрасти is just empty space
$font = "Font.ttf";
$string = "здрасти 123 english";
// I have tried this
$string = html_entity_decode($string, ENT_NOQUOTES, 'UTF-8');
imagettftext($this->fond, 20, 0, 11, 21, $textcolor, $font, $string)
;
I have tried a lot of stuff but no works... Have you guys any idea?