Can I swap colors in image using GD library in PHP?

前端 未结 8 1435
遇见更好的自我
遇见更好的自我 2020-12-03 08:18

I got the image like this (it\'s a graph):


(source: kitconet.com)

I want to change the colours, so the white is black, the graph line is li

相关标签:
8条回答
  • 2020-12-03 08:54

    This will replace the white color with Gray

    $imgname = "test.gif";
    $im = imagecreatefromgif ($imgname);
    
    $index = imagecolorclosest ( $im,  255,255,255 ); // get White COlor
    imagecolorset($im,$index,92,92,92); // SET NEW COLOR
    
    $imgname = "result.gif";
    imagegif($im, $imgname ); // save image as gif
    imagedestroy($im);
    

    0 讨论(0)
  • 2020-12-03 08:55

    IMG_FILTER_NEGATE: Reverses all colors of the image.

    http://www.php.net/manual/en/function.imagefilter.php

    Could that be a solution?

    0 讨论(0)
提交回复
热议问题