PHP 8.5.0 Beta 1 available for testing

Voting

: min(zero, five)?
(Example: nine)

The Note You're Voting On

Cruz at FtUC dot net
19 years ago
When lines drawn with imagesetstyle seem to produce a thin white line only, make sure antialiasing is disabled.

<?
imageantialias($im, false);
$style = array($gridxcolor, $gridxcolor, IMG_COLOR_TRANSPARENT, IMG_COLOR_TRANSPARENT);
imagesetstyle($im, $style);
imageline($im, $x, 0, $x, $ymax+5, IMG_COLOR_STYLED);
imageantialias($im, true);
?>

Setstyle and Antialias don't go together.

<< Back to user notes page

To Top