Last active
December 10, 2015 23:49
-
-
Save rxaviers/4512462 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<? | |
function ReduceColorDepth(&$gdimg, $colors=256, $dither=true) { | |
$colors = max(min($colors, 256), 2); | |
// ImageTrueColorToPalette usually makes ugly colors, the replacement is a bit better | |
//ImageTrueColorToPalette($gdimg, $dither, $colors); | |
phpthumb_filters::ImageTrueColorToPalette2($gdimg, $dither, $colors); | |
return true; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment