mirror of
https://github.com/tecnickcom/TCPDF.git
synced 2025-04-04 06:12:29 +02:00
explicitly cast values to int for imagesetpixel (#460)
Co-authored-by: Nicola Asuni <nicolaasuni@users.noreply.github.com>
This commit is contained in:
parent
f5b45b99f6
commit
9ce48756af
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user