Re: [PHP] GD, changing an images pixel color, color matching, fuzzy picture



On Mar 28, 2008, at 4:27 PM, Lamonte <php4food@xxxxxxxxx> wrote:

Okay I created a script that changes a basic smiley face into a red smiley face..but it doesn't replace all the yellow, it looks like a yellow shadow in the background:

<?php
$image = "smiley.png";
$data = getimagesize($image);
$width = intval($data[0]);
$height = intval($data[1]);
$cloneH = 0;
$hex = "FF0000";
$oldhex = "FCFF00";
$im = imagecreatefrompng($image);
$color = imagecolorallocate($im,hexdec(substr($hex,0,2)),hexdec (substr($hex,2,2)),hexdec(substr($hex,4,6)));
for($cloneH=0;$cloneH<$height;$cloneH++)
{
for($x=0;$x<$width;$x++)
{
if( colormatch($im,$x,$cloneH, $oldhex) )
imagesetpixel($im, $x, $cloneH, $color);
} }
header("Content-Type: {$data['mime']}");
imagepng($im);
function colormatch($image,$x,$y,$hex)
{
$rgb = imagecolorat($image,$x,$y);
$r = ($rgb >> 16) & 0xFF;
$g = ($rgb >> 8) & 0xFF;
$b = $rgb & 0xFF;
$r2 = hexdec(substr($hex,0,2));
$g2 = hexdec(substr($hex,2,2));
$b2 = hexdec(substr($hex,4,6));
if( $r == $r2 && $b == $b2 && $g == $g2 )
return true;
return false;
//echo "$r $r2, $g $g2, $b $b2";
}
?>

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Hi!

I have absolutely no clue if this will work. This has been typed directly into my mail client, so no guarantees.

<?php
function toRGB($color) {
return array('r' => ($color >> 16) & 0xFF, 'g' => ($color >> 8) & 0xFF, 'b' => $color & 0xFF);
}

function toColor($r, $g, $b) {
return $r * $g * $b;
}

$image = 'smiley.png';
list($w, $h) = getimagesize($image);
$im = imagecreatefrompng($image);

for ($y = 0; $y < $h; $y++) {
for ($x = 0; $x < $w; $x++) {
extract(toRGB(imagecolorat($im, $x, $y)));
if ($r >= 0xCC && $g >= 0xCC && $b <= 0x33)
imagesetpixel($im, $x, $y, toColor(($r + $g) / 2, 0, $b));
}
}

header('Content-type: image/png');
imagepng($im);
?>

:)
.



Relevant Pages

  • Re: [PHP] GD, changing an images pixel color, color matching, fuzzy picture
    ... red smiley face..but it doesn't replace all the yellow, it looks like a yellow shadow in the background: ... PHP General Mailing List ... and blue < 33 is some shade of yellow. ...
    (php.general)
  • RE: [PHP] Adding a log file
    ... of like Perl's warn function for PHP. ... I am seeing random items NOT being added to my shopping cart. ... No clue, which is why I want to log everything. ...
    (php.general)
  • Webpage designing [OT]
    ... This one might be Off-Topic but didnt have any clue where to post this. ... We are looking to create a intranet-site for our small group. ... If Php is the answer, then can you guys refer me to a good ...
    (comp.lang.php)
  • Re: Webpage designing [OT]
    ... >This one might be Off-Topic but didnt have any clue where to post this. ... >We are looking to create a intranet-site for our small group. ... >i.e Will Php do everything for me or will I be needing support from ...
    (comp.lang.php)
  • Link of today
    ... I have no clue in PHP and wonder if anyone have ... or know about a script that change a link every ... day at spec hour, ...
    (alt.php)