recherche

Maison  >  Questions et réponses  >  le corps du texte

Ajoutez du texte en filigrane, le chinois sera tronqué

<?php
$src = "02.png";
$info = getimagesize($src);
$type = image_type_to_extension($info[2],false);
$fun = "imagecreatefrom{$type} ";
$image = $fun($src);
$font = "arial.ttf";
$content = "欢迎来到PHP中文网";
$col = imagecolorallocatealpha($image, 255, 255, 255 , 30);
imagettftext($image, 20, 0, 20, 30, $col, $font, $content);
header("content-type:".$info['mime']);
$func = "image{$type}";
$func($image);
$func($image,'FFF.'.$type);
imagedestroy($image);

php_huangphp_huang2640 Il y a quelques jours1433

répondre à tous(1)je répondrai

  • ringa_lee

    ringa_lee2017-09-06 11:57:22

    Ajoutez un en-tête devant, header("Content-type: text/html; charset=utf-8");

    répondre
    0
  • php_huang

    Je l'ai essayé, mais cela n'a pas fonctionné. Merci.

    php_huang · 2017-09-06 16:49:20
  • Annulerrépondre