我在图片上添加了文字水印。我想制作如下图所示的文字效果(第一个)。我正在使用空心字体。示例代码是
$img = Image::make('public/foo.jpg');
// use callback to define details
$img->text('water-mark-text', 0, 0, function($font) {
$font->file('font.ttf');
$font->size(24);
$font->color(array(255, 255, 255, 0.5))
$font->align('center');
$font->valign('top');
});