Intervention / image

PHP Image Processing
https://image.intervention.io
MIT License
13.84k stars 1.5k forks source link

Implement text wrapping #1292

Closed olivervogel closed 7 months ago

olivervogel commented 7 months ago

See #143

$image->text($text, 50, 150, function ($font) {
    $font->filename('example.ttf');
    $font->color('#b01735');
    $font->size(12);
    $font->align('left');
    $font->valign('middle');
    $font->lineHeight(1.9);
    $font->wrap(200); // wrap text to the maximum width of 200 pixels
});

https://image.intervention.io/v3/modifying/text-fonts#text-wrapping