imagecopymerge_alpha converting my overlay to dest img's colors?
问题 Code: <?php header("Content-type: image/png"); $hue = rand(0, 360); $sat = rand(80,100); $lum = rand(50,100); $hue /= 360; $sat /= 100; $lum /= 100; $result = ColorHSLToRGB($hue, $sat, $lum); $col1 = sprintf('%02x', $result['r']) . sprintf('%02x', $result['g']) . sprintf('%02x', $result['b']); $hue2 = $hue + ((mt_rand() / mt_getrandmax()) / 10) - 0.5; $sat2 = $sat + ((mt_rand() / mt_getrandmax()) / 10) - 0.5; $lum2 = $lum + ((mt_rand() / mt_getrandmax()) / 10) - 0.5; $result2 = ColorHSLToRGB(