0

php wideimage を使用して小さな画像に長いテキストを書き込むにはどうすればよいですか?

これが私が使用した私のphpコードです、

$bg = WideImage::load("fbpostbg.png");
$final= $bg ->resize(400, 400);
$canvas = $final ->getCanvas();
$canvas->useFont('verdana.ttf', 14, $final->allocateColor(000, 000, 000));
$canvas->writeText('left +10', 'top +10', 'This is the text that I need to write to the above image, which is quite long...');

$final->output('jpg', 90);  

これは、画像キャンバスの外側にいくつかのテキストを出力し、見ることができません...
画像に書き込むテキストでワードラップを作成し、全文を含む画像を取得する必要があります。

私は WideImage を初めて使用します。助けてください。

4

1 に答える 1