ConFoo Montreal 2026: Call for Papers

Voting

: one minus zero?
(Example: nine)

The Note You're Voting On

Scott Evernden (doctor3d at gmail)
17 years ago
My last note doesn't do alpha properly, so make the following change to the appropriate lines:

$r = ($word & 0x7C00) >> 7;
$g = ($word & 0x03E0) >> 2;
$b = ($word & 0x001F) << 3;
$a = ($word & 0x8000) ? 127 : 0;
$color = imagecolorallocatealpha($image, $r, $g, $b, $a);
imagesetpixel($image, $x, $y, $color);

<< Back to user notes page

To Top