PHP - Replace colour within image - Stack Overflow most recent 30 from stackoverflow.com 2010-03-20T02:21:27Z http://stackoverflow.com/feeds/question/1548534 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1548534/php-replace-colour-within-image 1 PHP - Replace colour within image Mark http://stackoverflow.com/users/187227 2009-10-10T17:26:49Z 2009-10-22T16:45:19Z <p>I hope someone can help,</p> <p>I have made a script that masks images... however it is reliant on a colour to mask with ( 'green screen' style). The trouble is if the image that I am masking contains that colour it is ruined.</p> <p>What I am looking to do is prior to masking the image replace any occurance of my keying colour (0,0,255) with a similar colour such as 0,0,254.</p> <p>I have found a few solutions based around gif's or 256 colour PNG as they are indexed..</p> <p>So my question is also will it be more efficient to convert it to a gif or 256 png then look through the index and replace the colour or search through every pixel and replace the colours.</p> <p>Thanks,</p> http://stackoverflow.com/questions/1548534/php-replace-colour-within-image/1607796#1607796 1 Answer by radio4fan for PHP - Replace colour within image radio4fan http://stackoverflow.com/users/194655 2009-10-22T14:51:07Z 2009-10-22T14:51:07Z <p>You need to open the input file and scan each pixel to check for your chromokey value. </p> <p>Something like this:</p> <pre><code>// Open input and output image $src = imagecreatefromJPEG('input.jpg') or die('Problem with source'); $out = ImageCreateTrueColor(imagesx($src),imagesy($src)) or die('Problem In Creating image'); // scan image pixels for ($x = 0; $x &lt; imagesx($src); $x++) { for ($y = 0; $y &lt; imagesy($src); $y++) { $src_pix = imagecolorat($src,$x,$y); $src_pix_array = rgb_to_array($src_pix); // check for chromakey color if ($src_pix_array[0] == 0 &amp;&amp; $src_pix_array[1] == 0 &amp;&amp; $src_pix_array[2] == 255) { $src_pix_array[2] = 254; } imagesetpixel($out, $x, $y, imagecolorallocate($out, $src_pix_array[0], $src_pix_array[1], $src_pix_array[2])); } } // write $out to disc imagejpeg($out, 'output.jpg',100) or die('Problem saving output image'); imagedestroy($out); // split rgb to components function rgb_to_array($rgb) { $a[0] = ($rgb &gt;&gt; 16) &amp; 0xFF; $a[1] = ($rgb &gt;&gt; 8) &amp; 0xFF; $a[2] = $rgb &amp; 0xFF; return $a; } </code></pre> http://stackoverflow.com/questions/1548534/php-replace-colour-within-image/1608505#1608505 1 Answer by Mark for PHP - Replace colour within image Mark http://stackoverflow.com/users/187227 2009-10-22T16:45:19Z 2009-10-22T16:45:19Z <p>Here is the replace colour solution that first converts to 256 pallet:</p> <pre><code>//Open Image $Image = imagecreatefromJPEG('input.jpg') or die('Problem with source'); //set the image to 256 colours imagetruecolortopalette($Image,0,256); //Find the Chroma colour $RemChroma = imagecolorexact( $Image, 0,0,255 ); //Replace Chroma Colour imagecolorset($Image,$RemChroma,0,0,254); //Use function to convert back to true colour imagepalettetotruecolor($Image); function imagepalettetotruecolor(&amp;$img) { if (!imageistruecolor($img)) { $w = imagesx($img); $h = imagesy($img); $img1 = imagecreatetruecolor($w,$h); imagecopy($img1,$img,0,0,0,0,$w,$h); $img = $img1; } } </code></pre> <p>I personally prefer radio4fans solution as it is lossless, but if speed is your goal this is superior.</p>