From 7edddd21167870f65ff3f8eba772dfc165de461f Mon Sep 17 00:00:00 2001 From: Dario B Date: Sat, 27 Mar 2021 09:56:08 +0100 Subject: [PATCH] temporary files never deleted (#263) When creating PNG files, temporary file are not removed (search for __tcpdf_* in your temp directory). After this changes temp directory never has temporary files created by tcpdf Co-authored-by: Nicola Asuni --- tcpdf.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tcpdf.php b/tcpdf.php index cbc380a..c0a1ece 100644 --- a/tcpdf.php +++ b/tcpdf.php @@ -7365,6 +7365,9 @@ class TCPDF { $imgmask = $this->Image($tempfile_alpha, $x, $y, $w, $h, 'PNG', '', '', $resize, $dpi, '', true, false); // embed image, masked with previously embedded mask $this->Image($tempfile_plain, $x, $y, $w, $h, $type, $link, $align, $resize, $dpi, $palign, false, $imgmask); + // remove temp files + unlink($tempfile_alpha); + unlink($tempfile_plain); } /**