in font size 12 estimate 6-7 words come in one line and remaining words are disappearing due to they all are formatted in single line
is there any way to show long text in paragraph formatted way
or any kind of condition that print 6 words then increment coordinates (x and y-axis) and print remaining
code
// create new Intervention Image
$img = Image::make(public_path('img/')."/".'a11.jpg');
$img->resize(500, 500);
$img->brightness(-35);
$img->text('The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.', 250, 200, function($font) {
$font->file(public_path('fonts/Scream Real.ttf'));
$font->size(12);
$font->color('#fdf6e3');
$font->align('center');
$font->valign('top');
});