찾다

 >  Q&A  >  본문

워터마크 텍스트를 추가하면 중국어가 깨집니다.

<?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 = "이미지{$type}";
$func($image);
$func($image,'FFF.'.$type);
imagedestroy($image);

php_huangphp_huang2698일 전1461

모든 응답(1)나는 대답할 것이다

  • ringa_lee

    ringa_lee2017-09-06 11:57:22

    앞에 헤더를 추가하세요. header("Content-type: text/html; charset=utf-8");

    회신하다
    0
  • php_huang

    시도했지만 작동하지 않았습니다. 감사합니다.

    php_huang · 2017-09-06 16:49:20
  • 취소회신하다