[insert_php] include 'text.php'; include 'picfile.php'; $image = imagecreatefromjpeg('templates/boom-love-card.jpg'); imagealphablending($image, false); imagesavealpha($image, true); $color = imagecolorallocate($image, 26,26,26); // Create color $color1 = imagecolorallocate($image, 255,255,255); // Create color imagealphablending($image, true); imagettftext($image, 24,0, 390, 85, $color , $font, $tx1); imagettftext($image, 24,0, 152, 292, $color , $font, $tx2); imagettftext($image, 24,0, 370, 486, $color1 , $font, $tx1); imagettftext($image, 24,0, 101, 461, $color1 , $font, $tx2); imagepng($image, $temp_folder.$fn.'.jpg'); imagedestroy($image); echo ''; include '2name.php'; include 'vip.php'; [/insert_php]