drwj4061 2016-10-25 11:02
浏览 59
已采纳

使用imagettftext的水印文本

I am trying to add watermark (text from input) to .jpg image (from input) and define position, it's fine for one line but for more - starts moving to the left:

Image

Update:

echo $the_box["width"] - 1132,
echo $the_box["height"] - 25

but my image is 1024x768.

if (isset($_POST['TextToUpload'])) {
   $im = imagecreatefromjpeg($target_file);//jpg. to add watermark(text)

$font = 'Roboto-Black.ttf'; // font path
$font_size = 25;
$font_color =  imagecolorresolvealpha($im, 255, 255, 255,$tr1);//tr1 - var to define % of opacity
$text = $wt;// wt - text from input  $wt = $_POST['TextToUpload'];  
$lines = explode('|', wordwrap($text, 15, "
", true)); //15 sumbols - line limit

$text_angle=0;//var for angle
$text_padding    = 10; //some padding
$imageX = imagesx($im)+ $text_padding;
$imageY = imagesy($im)+ $text_padding;
$the_box        = calculateTextBox($text, $font, $font_size, $text_angle);
$y=$the_box["top"] + ($imageY / 2) - ($the_box["height"] / 2);
$x=$the_box["left"] + ($imageX / 2) - ($the_box["width"] / 2);

foreach ($lines as $line){    
imagettftext($im, $font_size, 0, $x, $y, $font_color, $font, $line);
// Increment Y so the next line is below the previous line
@$y += 23;}

imagepng($im, $target_file);
imagedestroy($im);
 }

I found lot of info about this issue but using imagecreate().

function calculateTextBox: http://php.net/manual/en/function.imagettfbbox.php#105593

  • 写回答

1条回答 默认 最新

  • doudiyu1639 2016-10-31 11:06
    关注

    Solution:

    $wt_len = strlen($text);//char count
    $lc=1;// num lines
    if ($wt_len > 15 && $wt_len <= 30) {
          $lc=2;
      } if ($wt_len > 30 && $wt_len <= 45) {
          $lc=3;
      } if ($wt_len > 45 && $wt_len <= 60) {
          $lc=4;
      }
    
    foreach ($lines as $line){
    
    
    $y=$the_box["top"] + ($imageY / 2) - ($the_box["height"] / 2);
    $x=$the_box["left"] + ($imageX / 2) - ($the_box["width"] / (2*$lc));// * num lines to get width of 1 line
    
    imagettftext($im, $font_size, 0, $x, $y, $font_color, $font, $line);
    
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 perl MISA分析p3_in脚本出错
  • ¥15 k8s部署jupyterlab,jupyterlab保存不了文件
  • ¥15 ubuntu虚拟机打包apk错误
  • ¥199 rust编程架构设计的方案 有偿
  • ¥15 回答4f系统的像差计算
  • ¥15 java如何提取出pdf里的文字?
  • ¥100 求三轴之间相互配合画圆以及直线的算法
  • ¥100 c语言,请帮蒟蒻写一个题的范例作参考
  • ¥15 名为“Product”的列已属于此 DataTable
  • ¥15 安卓adb backup备份应用数据失败