1
0
mirror of https://github.com/tecnickcom/TCPDF.git synced 2025-04-04 06:12:29 +02:00

explicitly cast values to int for imagesetpixel ()

Co-authored-by: Nicola Asuni <nicolaasuni@users.noreply.github.com>
This commit is contained in:
mhpcc 2021-12-28 12:54:49 +01:00 committed by GitHub
parent f5b45b99f6
commit 9ce48756af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -7359,7 +7359,7 @@ class TCPDF {
$color = imagecolorat($img, $xpx, $ypx);
// get and correct gamma color
$alpha = $this->getGDgamma($img, $color);
imagesetpixel($imgalpha, $xpx, $ypx, $alpha);
imagesetpixel($imgalpha, (int) $xpx, (int) $ypx, (int) $alpha);
}
}
imagepng($imgalpha, $tempfile_alpha);