[insert_php] include 'text.php'; include 'picfile.php'; $ppath = 'templates/damworld-2018.jpg' ; $image = imagecreatefromjpeg($ppath); imagealphablending($image, false); imagesavealpha($image, true); $color = imagecolorallocate($image,45,163,227); // Create color imagealphablending($image, true); list($width, $height) = getimagesize($ppath); if (mb_strlen($tx1) < 4){ $fontSize=40; } elseif (mb_strlen($tx1) < 7){ $fontSize=50; } else { $fontSize = $width / mb_strlen($tx1) * 0.6;} imagettftext($image, $fontSize,0, 210, 285, $color , $font, $tx1); imagepng($image, $temp_folder.$fn.'.jpg'); imagedestroy($image); echo ' '; include '1name.php'; include 'vip.php'; [/insert_php]