Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

40,025 questions

51,979 answers

573 users

How to find the average between RGB colors c1 and c2 in PHP

1 Answer

0 votes
function rgbToHex($r, $g, $b) {
    return sprintf("#%02x%02x%02x", $r, $g, $b);
}

// Color 1: RGB(255, 100, 50)
$r1 = 255;
$g1 = 100;
$b1 = 50;

// Color 2: RGB(50, 170, 200)
$r2 = 50;
$g2 = 170;
$b2 = 200;

// Average components
$avgR = intdiv($r1 + $r2, 2);
$avgG = intdiv($g1 + $g2, 2);
$avgB = intdiv($b1 + $b2, 2);

// Convert to hex
$hexColor = rgbToHex($avgR, $avgG, $avgB);
echo "Average Color (hex): $hexColor\n";



/*
run:

Average Color (hex): #98877d

*/

 



answered Jun 18, 2025 by avibootz
...