LoginSignup
0
0

More than 1 year has passed since last update.

imagick php laravel 画像に文字を合成

Posted at

画像に文字を合成する。
たったそれだけ。

・フォント azuki.ttf はググって拾ってくる


$bg = new \Imagick(public_path('/img/lasthako.png'));//背景画像
$str = '恋に恋焦がれ恋に泣く';

$text = new \ImagickDraw();
$text->setFont(resource_path("/any/font/azuki.ttf"));//フォント
$text->setFontSize(32);
$text->setStrokeColor('#000'); // black

//テキスト描画設定を含む ImagickDraw オブジェクト。x,y,角度,描画するテキスト
$bg->annotateImage($text, 10, 200, 0, $str);

$bg->writeImage(public_path('new_sample2.png'));


0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0