php - 如何为右下角的文字环绕图像添加图像水印?

标签 php laravel

这里是生成文本环绕图像的代码。如何将图像水印添加到右下角的文字环绕图像?谢谢。

private function warpTextImage($text)
{
    $font = $this->font;
    $text_dimensions = imagettfbbox(30, 0, $font, $text);
    $text_width = abs($text_dimensions[4] - $text_dimensions[0]);
    $text_height = abs($text_dimensions[5] - $text_dimensions[1]);
    $img_width = abs($text_dimensions[4] - $text_dimensions[0]) + 40;
    $img_height = abs($text_dimensions[5] - $text_dimensions[1]) + 40;
    $image = imagecreate($img_width, $img_height);
    $background = imagecolorallocate($image, $this->background_color[0], $this->background_color[1], $this->background_color[2]);
    $color = imagecolorallocate($image, $this->text_color[0], $this->text_color[1], $this->text_color[2]);
    $x = ($img_width - $text_width) / 2 - 4;
    $y = ($img_height - $text_height) / 2 + 30;
    imagettftext($image, 30, 0, $x, $y, $color, $font, $text);
    return $image;
}

最佳答案

您可以使用insert()方法Intervention package为此:

$img->insert('public/watermark.png', 'bottom-right', 10, 10);

关于php - 如何为右下角的文字环绕图像添加图像水印?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39555279/

相关文章:

php - Laravel - 我应该存储模型结果以避免多个数据库查询吗?

laravel - Created_at 保存时区错误

php - Laravel 4:对如何使用 App::make() 感到困惑

Laravel Migration 更改表名称

Laravel 与多个自定义数据透视表的多对多关系?

php - Laravel 5.3 - Carbon Date - UTC 偏移获取时区名称

PHP 根据最大​​宽度或重量按比例调整图像大小

php - 从 php 增加数据库值(value)?

php - PDO:如何检查连接是否有效?

php - 如何在 Laravel 的控制台上打印消息?