Skip to content

Instantly share code, notes, and snippets.

@Kcko
Created May 30, 2016 13:39
Show Gist options
  • Save Kcko/58874dc16d44bf8129247f26aa6a33ef to your computer and use it in GitHub Desktop.
Save Kcko/58874dc16d44bf8129247f26aa6a33ef to your computer and use it in GitHub Desktop.
<?php
$imgname = "1.gif";
$im = imagecreatefromgif ($imgname);
$index = imagecolorexact ($im,0,128,0);
imagecolorset($im,$index,240,255,0);
$imgname = "result.gif";
imagegif($im,$imgname);
?>
<img src="result.gif">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment