PHP 8.5.0 Alpha 1 available for testing

Voting

: four minus one?
(Example: nine)

The Note You're Voting On

Chad Allard
16 years ago
Regarding the image_flip function discussed in the notes here, don't forget to support transparency.

AFTER:

$imgdest = imagecreatetruecolor($width, $height);

ADD:

imagealphablending($imgdest, false);
imagesavealpha($imgdest, true);

In another post here it mentioned you didn't have to use the imagesavealpha function, but I found without it the background transparency can turn the background canvas black.

<< Back to user notes page

To Top