/* $now = time(); // or your date as well $your_date = strtotime("1983-01-01"); $datediff = $now - $your_date; $days = round($datediff / (60 * 60 * 24)); */ // https://stackoverflow.com/questions/10290259/detect-main-colors-in-an-image-with-php $image=imagecreatefromjpeg('assets/artifact/360-210905.JPG'); $thumb=imagecreatetruecolor(1,1); imagecopyresampled($thumb,$image,0,0,0,0,1,1,imagesx($image),imagesy($image)); $mainColor=strtoupper(dechex(imagecolorat($thumb,0,0))); ?>