Revert "temporary files never deleted (#263)"

This reverts commit 7edddd21167870f65ff3f8eba772dfc165de461f.
This commit is contained in:
nicolaasuni 2021-03-27 09:00:42 +00:00
parent 7edddd2116
commit 14fd6779f3

View File

@ -7365,9 +7365,6 @@ 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);
}
/**