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;

Yassine Doghri
committed
use Exception;
/**

Yassine Doghri
committed
* TODO: refactor this by splitting process modules into different classes (image generation, subtitles clip, 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 $videoClipFilePath;
protected string $videoClipOutput;

Yassine Doghri
committed
protected float $duration;
protected string $audioInput;
protected string $episodeCoverPath;
protected string $soundbiteOutput;
protected string $subtitlesClipOutput;
protected string $videoClipBgOutput;
protected ?string $episodeNumbering = null;

Yassine Doghri
committed
protected string $tempFileOutput;

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);
$podcastFolder = media_path("podcasts/{$this->episode->podcast->handle}");
$this->videoClipOutput = $podcastFolder . "/{$this->episode->slug}-clip-{$this->start}-to-{$this->end}-{$this->format}-{$this->theme}.mp4";
$this->videoClipFilePath = "podcasts/{$this->episode->podcast->handle}/{$this->episode->slug}-clip-{$this->start}-to-{$this->end}-{$this->format}-{$this->theme}.mp4";

Yassine Doghri
committed
// Temporary files to generate clip
$tempFile = tempnam(WRITEPATH . 'temp', "{$this->episode->slug}-{$this->start}-{$this->end}");

Yassine Doghri
committed
if (! $tempFile) {
throw new Exception(
'Could not create temporary files, check for permissions on your ' . WRITEPATH . 'temp folder.'
);
}
$this->tempFileOutput = $tempFile;
$this->soundbiteOutput = $tempFile . '-soundbite.mp3';
$this->subtitlesClipOutput = $tempFile . '-subtitle.srt';
$this->videoClipBgOutput = $tempFile . '-bg.png';
}
public function soundbite(): void
{
$soundbiteCmd = "ffmpeg -y -ss {$this->start} -t {$this->duration} -i {$this->audioInput} {$this->soundbiteOutput}";
exec($soundbiteCmd);
}
public function subtitlesClip(): void
{

Yassine Doghri
committed
if ($this->episode->transcript === null) {
throw new Exception('Episode does not have a transcript!');
}
if ($this->episode->transcript->json_path) {
$this->generateSubtitlesClipFromJson($this->episode->transcript->json_path);
} else {
$subtitlesInput = media_path($this->episode->transcript->file_path);
$subtitleClipCmd = "ffmpeg -y -i {$subtitlesInput} -ss {$this->start} -t {$this->duration} {$this->subtitlesClipOutput}";
exec($subtitleClipCmd);
}
}

Yassine Doghri
committed
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
public function generateSubtitlesClipFromJson(string $jsonFileInput): void
{
$jsonTranscriptString = file_get_contents($jsonFileInput);
if ($jsonTranscriptString === false) {
throw new Exception('Cannot get transcript json contents.');
}
$jsonTranscript = json_decode($jsonTranscriptString, true);
if ($jsonTranscript === null) {
throw new Exception('Transcript json is invalid.');
}
$srtClip = '';
$segmentIndex = 1;
foreach ($jsonTranscript as $segment) {
$startTime = null;
$endTime = null;
if ($segment['startTime'] < $this->end && $segment['endTime'] > $this->start) {
$startTime = $segment['startTime'] - $this->start;
$endTime = $segment['endTime'] - $this->start;
}
if ($segment['startTime'] < $this->start && $this->start < $segment['endTime']) {
$startTime = 0;
}
if ($segment['startTime'] < $this->end && $segment['endTime'] >= $this->end) {
$endTime = $this->duration;
}
if ($startTime !== null && $endTime !== null) {
$formattedStartTime = $this->formatSeconds($startTime);
$formattedEndTime = $this->formatSeconds($endTime);
$srtClip .= <<<CODE_SAMPLE
{$segmentIndex}
{$formattedStartTime} --> {$formattedEndTime}
{$segment['text']}
CODE_SAMPLE;
++$segmentIndex;
}
}
// create srt clip file
file_put_contents($this->subtitlesClipOutput, $srtClip);
}
public function formatSeconds(float $seconds): string
{
$milliseconds = str_replace('0.', '', (string) (round($seconds - floor($seconds), 3)));
return gmdate('H:i:s', (int) floor($seconds)) . ',' . str_pad($milliseconds, 3, '0', STR_PAD_RIGHT);
}
public function cleanTempFiles(): void
{
// delete generated video background image, soundbite & subtitlesClip

Yassine Doghri
committed
unlink($this->tempFileOutput);

Yassine Doghri
committed
unlink($this->soundbiteOutput);
unlink($this->subtitlesClipOutput);
unlink($this->videoClipBgOutput);
}

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
$cmdResult = $this->cmd_exec($generateCmd);
$this->cleanTempFiles();
return $cmdResult;
}
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]",
'[watermarked]scale=w=-1:h=-1:out_color_matrix=bt709[outfinal]',
$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 "[outfinal]"',
'-map 0:a',
'-acodec copy',
'-vcodec libx264 -pix_fmt yuv420p',
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
"{$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();
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
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
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
/**
* @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),
};
}
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
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
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
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
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
/**
* 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;
}
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
/**
* 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
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
// 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;