Newer
Older
<?php
declare(strict_types=1);
/**
* @copyright 2021 Podlibre
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
* @link https://castopod.org/
*/
namespace MediaClipper;
use App\Entities\Episode;
use GdImage;
/**
* TODO: refactor this by splitting image manipulations + video generation
*
* @phpstan-ignore-next-line
*/

Yassine Doghri
committed
class VideoClipper
{
/**
* @var array<string, string>
*/
public const FONTS = [
'episodeTitle' => 'Rubik-Bold.ttf',
'podcastTitle' => 'Inter-Regular.otf',
'subtitles' => 'Inter-SemiBold',
'episodeNumbering' => 'Inter-SemiBold.otf',
'timestamp' => 'NotoSansMono-Regular.ttf',
];

Yassine Doghri
committed
public ?string $logs = null;
public bool $error = false;
public string $videoClipOutput;
protected float $duration;
protected string $audioInput;
protected string $episodeCoverPath;
protected ?string $subtitlesInput = null;
protected string $soundbiteOutput;
protected string $subtitlesClipOutput;
protected string $videoClipBgOutput;
protected ?string $episodeNumbering = null;
/**

Yassine Doghri
committed
* @var array<string, mixed>
*/
protected array $dimensions = [];
/**
* @var array<string, mixed>
*/
protected array $colors = [];
/**
* @param 'landscape'|'portrait'|'squared' $format
* @param 'pine'|'crimson'|'lake'|'amber'|'jacaranda'|'onyx' $theme
*/
public function __construct(
protected Episode $episode,
protected float $start,
protected float $end,
protected string $format = 'landscape',
protected string $theme = 'pine',
) {
$this->duration = $end - $start;
$this->episodeNumbering = $this->episodeNumbering($this->episode->number, $this->episode->season_number);
$this->dimensions = config('MediaClipper')
->formats[$format];
$this->colors = config('MediaClipper')
->themes[$theme];
helper(['media']);
$this->audioInput = media_path($this->episode->audio->file_path);
$this->episodeCoverPath = media_path($this->episode->cover->file_path);
if ($this->episode->transcript !== null) {
$this->subtitlesInput = media_path($this->episode->transcript->file_path);
$podcastFolder = media_path("podcasts/{$this->episode->podcast->handle}");
$this->soundbiteOutput = $podcastFolder . "/{$this->episode->slug}-soundbite-{$this->start}-to-{$this->end}.mp3";
$this->subtitlesClipOutput = $podcastFolder . "/{$this->episode->slug}-subtitles-clip-{$this->start}-to-{$this->end}.srt";
$this->videoClipBgOutput = $podcastFolder . "/{$this->episode->slug}-clip-bg-{$this->format}-{$this->theme}.png";
$this->videoClipOutput = $podcastFolder . "/{$this->episode->slug}-clip-{$this->start}-to-{$this->end}-{$this->format}-{$this->theme}.mp4";
}
public function soundbite(): void
{
$soundbiteCmd = "ffmpeg -y -ss {$this->start} -t {$this->duration} -i {$this->audioInput} {$this->soundbiteOutput}";
exec($soundbiteCmd);
}
public function subtitlesClip(): void
{
if ($this->subtitlesInput) {
$subtitleClipCmd = "ffmpeg -y -i {$this->subtitlesInput} -ss {$this->start} -t {$this->duration} {$this->subtitlesClipOutput}";
exec($subtitleClipCmd);
}
}

Yassine Doghri
committed
/**
* @return int 0 for success, else error
*/
public function generate(): int
{
$this->soundbite();
$this->subtitlesClip();
// check if video clip bg already exists before generating it
if (! file_exists($this->videoClipBgOutput)) {
$this->generateVideoClipBg();
}
$generateCmd = $this->getCmd();

Yassine Doghri
committed
return $this->cmd_exec($generateCmd);
}
public function getCmd(): string
{
// @phpstan-ignore
$filters = [
"[0:a]aformat=channel_layouts=mono,showwaves=s={$this->dimensions['soundwaves']['width']}x{$this->dimensions['soundwaves']['height']}:mode=cline:rate=10:colors=white,format=rgb24[waves]",
"[waves]scale={$this->dimensions['width']}:{$this->dimensions['height']}:flags=neighbor[resizedwaves]",
'[resizedwaves][3:v][4:v][5:v]threshold[cleanwaves]',
'[cleanwaves][2:v]alphamerge[waves_t]',
'[4:v][waves_t]overlay=x=0:y=0:shortest=1[waves_t2]',
'[waves_t2]split[m][a]',
'[m][a]alphamerge[waves_t3]',
"[waves_t3]scale={$this->dimensions['soundwaves']['rescaleWidth']}:{$this->dimensions['soundwaves']['rescaleHeight']},lutrgb=r='if(gt(val,100),{$this->colors['soundwaves'][0]},val)':g='if(gt(val,100),{$this->colors['soundwaves'][1]},val)':b='if(gt(val,100),{$this->colors['soundwaves'][2]},val)'[waves_final]",
"[1:v][waves_final]overlay=x={$this->dimensions['soundwaves']['x']}:y={$this->dimensions['soundwaves']['y']}:shortest=1,drawtext=fontfile=" . $this->getFont(
'timestamp'
) . ":text='%{pts\:gmtime\:{$this->start}\:%H\\\\\\\\\\:%M\\\\\\\\\\:%S\}':x={$this->dimensions['timestamp']['x']}:y={$this->dimensions['timestamp']['y']}:fontsize={$this->dimensions['timestamp']['fontsize']}:fontcolor=0x{$this->colors['timestampText']}:box=1:boxcolor=0x{$this->colors['timestampBg']}:boxborderw={$this->dimensions['timestamp']['padding']}[v3]",
"color=c=0x{$this->colors['progressbar']}:s={$this->dimensions['width']}x{$this->dimensions['progressbar']['height']}[progressbar]",
"[v3][progressbar]overlay=-w+(w/{$this->duration})*t:0:shortest=1:format=rgb,subtitles={$this->subtitlesClipOutput}:fontsdir=" . config(
'MediaClipper'
)->fontsFolder . ":force_style='Fontname=" . self::FONTS['subtitles'] . ",Alignment=5,Fontsize={$this->dimensions['subtitles']['fontsize']},PrimaryColour=&H{$this->colors['subtitles']}&,BorderStyle=1,Outline=0,Shadow=0,MarginL={$this->dimensions['subtitles']['marginL']},MarginR={$this->dimensions['subtitles']['marginR']},MarginV={$this->dimensions['subtitles']['marginV']}'[outv]",
"[6:v]scale={$this->dimensions['watermark']['width']}:{$this->dimensions['watermark']['height']}[watermark]",
"color=0x{$this->colors['watermarkBg']}:{$this->dimensions['watermark']['width']}x{$this->dimensions['watermark']['height']}[over]",
'[over][watermark]overlay=x=0:y=0:shortest=1[watermark_box]',
"[outv][watermark_box]overlay=x={$this->dimensions['watermark']['x']}:y={$this->dimensions['watermark']['y']}:shortest=1[watermarked]",
$watermark = config('MediaClipper')
->watermark;
$videoClipCmd = [
'ffmpeg -y',
"-i {$this->soundbiteOutput}",
"-loop 1 -framerate 30 -i {$this->videoClipBgOutput}",
"-loop 1 -framerate 30 -i {$this->dimensions['soundwaves']['mask']}",
"-f lavfi -i color=gray:{$this->dimensions['width']}x{$this->dimensions['height']}",
"-f lavfi -i color=black:{$this->dimensions['width']}x{$this->dimensions['height']}",
"-f lavfi -i color=white:{$this->dimensions['width']}x{$this->dimensions['height']}",
"-loop 1 -framerate 1 -i {$watermark}",
'-filter_complex "' . implode(';', $filters) . '"',
'-map "[watermarked]"',
'-map 0:a',
'-acodec copy',
'-vcodec libx264rgb',
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
"{$this->videoClipOutput}",
];
return implode(' ', $videoClipCmd);
}
private function episodeNumbering(?int $episodeNumber = null, ?int $seasonNumber = null,): ?string
{
if (! $episodeNumber && ! $seasonNumber) {
return null;
}
$transKey = '';
$args = [];
if ($episodeNumber !== null) {
$args['episodeNumber'] = sprintf('%02d', $episodeNumber);
}
if ($seasonNumber !== null) {
$args['seasonNumber'] = sprintf('%02d', $seasonNumber);
}
if ($episodeNumber !== null && $seasonNumber !== null) {
$transKey = 'Episode.season_episode';
} elseif ($episodeNumber !== null && $seasonNumber === null) {
$transKey = 'Episode.number';
} elseif ($episodeNumber === null && $seasonNumber !== null) {
$transKey = 'Episode.season';
}
return lang($transKey . '_abbr', $args);
}
private function generateVideoClipBg(): bool
{
$background = $this->generateBackground($this->dimensions['width'], $this->dimensions['height']);
if ($background === null) {
return false;
}

Yassine Doghri
committed
$episodeCover = $this->createCoverImage();
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
if (! $episodeCover) {
return false;
}
$scaledEpisodeCover = $this->scaleImage(
$episodeCover,
$this->dimensions['cover']['width'],
$this->dimensions['cover']['height']
);
if (! $scaledEpisodeCover) {
return false;
}
$roundedEpisodeCover = $this->roundCorners($scaledEpisodeCover, $this->dimensions['cover']['radius']);
if (! $roundedEpisodeCover) {
return false;
}
$isOverlaid = $this->overlayImages(
$background,
$roundedEpisodeCover,
$this->dimensions['cover']['x'],
$this->dimensions['cover']['y'],
$this->dimensions['cover']['width'],
$this->dimensions['cover']['height']
);
if (! $isOverlaid) {
return false;
}

Yassine Doghri
committed
$this->addParagraphToImage(
$background,
$this->dimensions['podcastTitle']['x'],
$this->dimensions['podcastTitle']['y'],
$this->episode->podcast->title,
$this->getFont('podcastTitle'),

Yassine Doghri
committed
$this->dimensions['podcastTitle']['fontsize'],
$this->dimensions['podcastTitle']['lineWidth'],
$this->dimensions['podcastTitle']['lines'] ?? 1,
$this->dimensions['podcastTitle']['lineHeight'] ?? 1,

Yassine Doghri
committed
$episodeNumberingWidth = 0;
if ($this->episodeNumbering) {

Yassine Doghri
committed
$episodeTitleBox = $this->calculateTextBox(
$this->dimensions['episodeTitle']['fontsize'],
0,
$this->getFont('episodeTitle'),
$this->episode->title
);
$episodeNumberingBox = $this->calculateTextBox(
$this->dimensions['episodeNumbering']['fontsize'],
0,
$this->getFont('episodeNumbering'),
$this->episodeNumbering
);
if (! $episodeTitleBox || ! $episodeNumberingBox) {
return false;
}
$episodeTitleCenter = (int) ($episodeTitleBox['height'] / 2);
$episodeNumberingCenter = (int) (($episodeNumberingBox['height'] + ($this->dimensions['episodeNumbering']['paddingY'] * 2)) / 2);
$episodeNumberingWidth = $episodeNumberingBox['width'] + ($this->dimensions['episodeNumbering']['paddingX'] * 2);
$this->addTextWithBox(
$background,

Yassine Doghri
committed
$this->dimensions['episodeTitle']['x'],
$this->dimensions['episodeTitle']['y'] + $episodeTitleCenter - $episodeNumberingCenter,
$this->episodeNumbering,
$this->getFont('episodeNumbering'),
$this->dimensions['episodeNumbering']['fontsize'],
$this->colors['episodeNumberingText'],
$this->colors['episodeNumberingBg'],
$this->dimensions['episodeNumbering']['paddingX'],
$this->dimensions['episodeNumbering']['paddingY'],
);
}

Yassine Doghri
committed
$this->addParagraphToImage(
$background,
$this->dimensions['episodeTitle']['x'],
$this->dimensions['episodeTitle']['y'],
$this->episode->title,
$this->getFont('episodeTitle'),
$this->dimensions['episodeTitle']['fontsize'],
$this->dimensions['episodeTitle']['lineWidth'],
$this->dimensions['episodeTitle']['lines'],
$this->dimensions['episodeTitle']['lineHeight'] ?? 1,
$episodeNumberingWidth + ($episodeNumberingWidth === 0 ? 0 : $this->dimensions['episodeNumbering']['marginRight']),
);
// Add quotes for subtitles
$quotes = imagecreatefrompng(config('MediaClipper')->quotesImage);
if (! $quotes) {
return false;
}
$cleanedQuotes = $this->cleanTransparency($quotes);
if (! $cleanedQuotes) {
return false;
}
imagefilter($cleanedQuotes, IMG_FILTER_CONTRAST, 255);
imagefilter($cleanedQuotes, IMG_FILTER_COLORIZE, ...$this->colors['quotes']);
$scaledQuotes = $this->scaleImage(
$cleanedQuotes,
$this->dimensions['quotes']['width'],
$this->dimensions['quotes']['height']
);
if (! $scaledQuotes) {
return false;
}
imagesavealpha($scaledQuotes, true);
$this->overlayImages(
$background,
$scaledQuotes,
$this->dimensions['quotes']['x'],
$this->dimensions['quotes']['y'],
$this->dimensions['quotes']['width'],
$this->dimensions['quotes']['height']
);
// Save Image
imagepng($background, $this->videoClipBgOutput);
return true;
}

Yassine Doghri
committed
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
/**
* @return int 0 (success), 1 - 2 - 254 - 255 (error)
*/
private function cmd_exec(string $cmd): int
{
$outFile = tempnam(WRITEPATH . 'logs', 'cmd-out-');
if (! $outFile) {
return 254;
}
$descriptorSpec = [
0 => ['pipe', 'r'],
1 => ['pipe', 'w'],
2 => ['file', $outFile, 'w'],
// FFmpeg outputs to stderr by default
];
$proc = proc_open($cmd, $descriptorSpec, $pipes);
if (! is_resource($proc)) {
return 255;
}
fclose($pipes[0]); //Don't really want to give any input
$exit = proc_close($proc);
$this->logs = (string) file_get_contents($outFile);
// remove temporary files
unlink($outFile);
return $exit;
}
private function getFont(string $name): string
{
return config('MediaClipper')->fontsFolder . self::FONTS[$name];
}
private function generateBackground(int $width, int $height): ?GdImage
{
$background = imagecreatetruecolor($width, $height);
if ($background === false) {
return null;
}
$coloredBackground = imagecolorallocate($background, ...$this->colors['background']);
if ($coloredBackground === false) {
return null;
}
imagefill($background, 0, 0, $coloredBackground);
return $background;
}

Yassine Doghri
committed
private function createCoverImage(): GdImage | false
{
return match ($this->episode->cover->file_mimetype) {
'image/jpeg' => imagecreatefromjpeg($this->episodeCoverPath),
'image/png' => imagecreatefrompng($this->episodeCoverPath),
default => imagecreate(1400, 1400),
};
}
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
private function scaleImage(GdImage $image, int $width, int $height): GdImage | false
{
return imagescale($image, $width, $height);
}
/**
* Copied and adapted from https://stackoverflow.com/a/52626818
*/
private function roundCorners(GdImage $source, int $radius): GdImage | false
{
$ws = imagesx($source);
$hs = imagesy($source);
$corner = $radius + 2;
$s = $corner * 2;
$src = imagecreatetruecolor($s, $s);
if ($src === false) {
return false;
}
imagecopy($src, $source, 0, 0, 0, 0, $corner, $corner);
imagecopy($src, $source, $corner, 0, $ws - $corner, 0, $corner, $corner);
imagecopy($src, $source, $corner, $corner, $ws - $corner, $hs - $corner, $corner, $corner);
imagecopy($src, $source, 0, $corner, 0, $hs - $corner, $corner, $corner);
$q = 8; # change this if you want
$radius *= $q;
# find unique color
do {
$r = rand(0, 255);
$g = rand(0, 255);
$b = rand(0, 255);
} while (imagecolorexact($src, $r, $g, $b) < 0);
$ns = $s * $q;
$img = imagecreatetruecolor($ns, $ns);
if ($img === false) {
return false;
}
$alphacolor = imagecolorallocatealpha($img, $r, $g, $b, 127);
if ($alphacolor === false) {
return false;
}
imagealphablending($img, false);
imagefilledrectangle($img, 0, 0, $ns, $ns, $alphacolor);
imagefill($img, 0, 0, $alphacolor);
imagecopyresampled($img, $src, 0, 0, 0, 0, $ns, $ns, $s, $s);
imagedestroy($src);
imagearc($img, $radius - 1, $radius - 1, $radius * 2, $radius * 2, 180, 270, $alphacolor);
imagefilltoborder($img, 0, 0, $alphacolor, $alphacolor);
imagearc($img, $ns - $radius, $radius - 1, $radius * 2, $radius * 2, 270, 0, $alphacolor);
imagefilltoborder($img, $ns - 1, 0, $alphacolor, $alphacolor);
imagearc($img, $radius - 1, $ns - $radius, $radius * 2, $radius * 2, 90, 180, $alphacolor);
imagefilltoborder($img, 0, $ns - 1, $alphacolor, $alphacolor);
imagearc($img, $ns - $radius, $ns - $radius, $radius * 2, $radius * 2, 0, 90, $alphacolor);
imagefilltoborder($img, $ns - 1, $ns - 1, $alphacolor, $alphacolor);
imagealphablending($img, true);
imagecolortransparent($img, $alphacolor);
# resize image down
$dest = imagecreatetruecolor($s, $s);
if ($dest === false) {
return false;
}
imagealphablending($dest, false);
imagefilledrectangle($dest, 0, 0, $s, $s, $alphacolor);
imagecopyresampled($dest, $img, 0, 0, 0, 0, $s, $s, $ns, $ns);
imagedestroy($img);
# output image
imagealphablending($source, false);
imagecopy($source, $dest, 0, 0, 0, 0, $corner, $corner);
imagecopy($source, $dest, $ws - $corner, 0, $corner, 0, $corner, $corner);
imagecopy($source, $dest, $ws - $corner, $hs - $corner, $corner, $corner, $corner, $corner);
imagecopy($source, $dest, 0, $hs - $corner, 0, $corner, $corner, $corner);
imagealphablending($source, true);
imagedestroy($dest);
return $source;
}
private function overlayImages(
GdImage $background,
GdImage $foreground,
int $x,
int $y,
int $width,
int $height
): bool {
return imagecopy($background, $foreground, $x, $y, 0, 0, $width, $height);
}

Yassine Doghri
committed
private function addParagraphToImage(
GdImage $image,
int $x,
int $y,
string $text,
string $fontPath,
int $fontsize,

Yassine Doghri
committed
int $lineWidth,
int $numberOfLines = 1,

Yassine Doghri
committed
float $lineHeight = 1,
int $paragraphIndent = 0,
): bool {
// Allocate A Color For The Text
$textColor = imagecolorallocate($image, ...$this->colors['text']);
if ($textColor === false) {
return false;
}

Yassine Doghri
committed
$lines = $this->textToParagraph($text, $fontPath, $fontsize, $lineWidth, $numberOfLines, $paragraphIndent);
if (! $lines) {
return false;
}

Yassine Doghri
committed
$leading = (int) ($fontsize * $lineHeight);
foreach ($lines as $i => $line) {
// Print line On Image
imagettftext(
$image,
$fontsize,
0,
$x + ($paragraphIndent * ($i === 0 ? 1 : 0)),
$y + $fontsize + ($leading * $i),
$textColor,

Yassine Doghri
committed
$fontPath,
$line
);
}
return true;
}

Yassine Doghri
committed
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
/**
* Adapted from: https://www.php.net/manual/fr/function.imagettfbbox.php#105593
*
* @return array<string, mixed>|false
*/
private function calculateTextBox(int $fontSize, int $fontAngle, string $fontFile, string $text): array | false
{
/************
simple function that calculates the *exact* bounding box (single pixel precision).
The function returns an associative array with these keys:
left, top: coordinates you will pass to imagettftext
width, height: dimension of the image you have to create
*************/
$bbox = imagettfbbox($fontSize, $fontAngle, $fontFile, $text);
if (! $bbox) {
return false;
}
$minX = min([$bbox[0], $bbox[2], $bbox[4], $bbox[6]]);
$maxX = max([$bbox[0], $bbox[2], $bbox[4], $bbox[6]]);
$minY = min([$bbox[1], $bbox[3], $bbox[5], $bbox[7]]);
$maxY = max([$bbox[1], $bbox[3], $bbox[5], $bbox[7]]);
return [
'left' => abs($minX) - 1,
'top' => abs($minY),
'width' => $maxX - $minX,
'height' => $maxY - $minY,
'box' => $bbox,
];
}
/**
* @param int[] $boxTextColor
* @param int[] $boxBgColor
*/
private function addTextWithBox(
GdImage $image,
int $x,
int $y,
string $text,
string $fontPath,
int $fontsize,
array $boxTextColor,
array $boxBgColor,
int $paddingX = 0,
int $paddingY = 0,
): bool {
// Create some colors
$textColor = imagecolorallocate($image, ...$boxTextColor);
$bgColor = imagecolorallocate($image, ...$boxBgColor);
if ($textColor === false || $bgColor === false) {
return false;
}
$bbox = $this->calculateTextBox($fontsize, 0, $fontPath, $text);
if ($bbox === false) {
return false;
}
$x1 = $x + $bbox['left'] + $paddingX;
$y1 = $y + $bbox['top'] + $paddingY;
$x2 = $x + $bbox['width'] + ($paddingX * 2);
$y2 = $y + $bbox['height'] + ($paddingY * 2);
imagefilledrectangle($image, $x, $y, $x2, $y2, $bgColor);
imagettftext($image, $fontsize, 0, $x1, $y1, $textColor, $fontPath, $text);
return true;
}
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
/**
* This helps getting a truly transparent background for images with transparency:
* https://stackoverflow.com/a/2611911
*/
private function cleanTransparency(GdImage $image): GdImage | false
{
$imageBg = imagecolorallocate($image, 0, 0, 0);
if ($imageBg === false) {
return false;
}
// removing the black from the image
imagecolortransparent($image, $imageBg);
// turning off alpha blending (to ensure alpha channel information
// is preserved, rather than removed (blending with the rest of the
// image in the form of black))
imagealphablending($image, false);
// turning on alpha channel information saving (to ensure the full range
// of transparency is preserved)
imagesavealpha($image, true);
return $image;
}

Yassine Doghri
committed
* @return array<int, string>|false

Yassine Doghri
committed
private function textToParagraph(
string $text,
string $fontPath,
int $fontsize,
int $lineWidth,
int $numberOfLines,
int $paragraphIndent = 0,
): array | false {
// check length of text
$bbox = $this->calculateTextBox($fontsize, 0, $fontPath, $text);
if (! $bbox) {
return false;
}

Yassine Doghri
committed
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
// return early if text width is less than line width
if ($bbox['width'] <= $lineWidth) {
return [$text];
}
// cut text in multiple lines based on the lineWidth property
$lines = [''];
$length = $paragraphIndent;
$words = preg_split('~\b(?=\S)|(?=\s)~', $text);
if (! $words) {
return false;
}
$wordCount = count($words);
$lineNumber = 0;
for ($i = 0; $i < $wordCount; ++$i) {
$word = $words[$i];
$wordBox = $this->calculateTextBox($fontsize, 0, $fontPath, $word);
if (! $wordBox) {
return false;
}
$wordWidth = $wordBox['width'];
if (($wordWidth + $length) > $lineWidth) {
++$lineNumber;
if ($lineNumber > $numberOfLines - 1) {
$lines[$numberOfLines - 1] .= '…';
break;
}
$lines[$lineNumber] = '';
$length = 0;
// If the current word is just a space, don't bother. Skip (saves a weird-looking gap in the text).
if ($word === ' ') {
continue;
}
}
$lines[$lineNumber] .= $word;
$length += $wordWidth;
}
return $lines;