0

さて、私は画像にテキストを書き込もうとしていますが、これがあります:

header("Content-type: image/png");
$font = 4;
$width = ImageFontWidth($font) * strlen($string);
$height = ImageFontHeight($font);

$im = @imagecreate($width,$height);
$background_color = imagecolorallocatealpha($im, 255, 255, 255, 127);
$text_color = imagecolorallocate($im, 0, 0,0); 
imagestring($im, $font, 0, 0, utf8_decode($string), $text_color);
imagepng($im);
imagedestroy($im);

そして文字列:

$string = "Hello, My name is Ikillnukes and I'm trying to do a newline with PHP.";

さて、私は出力でこれを行いたいです:

通常の出力: こんにちは、私の名前は Ikillnukes です。PHP で改行を実行しようとしています。

私が欲しいこと:

こんにちは、私の名前は Ikillnukes です。

PHPで改行をしようとしています。

これどうやってするの?

もう 1 つ...文字列に太字のテキストを追加したいのですが、どうすればよいですか?

4

1 に答える 1