// 회원 닉네임
imagettftext($image, 40, 0, 290, 58, $color, $font, $nickname);
// 회원 레벨 Lv
imagettftext($image, 24, 0, 210, 35, $color, $font, 'Lv.');
// 회원 레벨 숫자 (레벨숫자 오른쪽 정렬을 위해)
imagettftext($image, 24, 0, 260-(strlen($level)*10), 65, $color, $font, $level);
// 회원가입
imagettftext($image, 18, 0, 220, 100, $color, $font, '회원가입 : '.$joindate.' 방문횟수 : '.$times.'회');
// 댓글수, 베오베, 베스트, 전체글
imagettftext($image, 15, 0, 220, 127, $color, $font, '댓글수 : '.$replytimes.' 베오베 : '.$bobtimes.' 베스트 : '.$besttimes.' 전체글 : '.$totaltimes);
// 자기소개 첫번째 줄
imagettftext($image, 14, 0, 220, 155, imagecolorallocatehex($image,'#'.mysql_escape_string($_GET['about_color'])), $font, $_GET['about1']);
// 자기소개 두번째 줄
imagettftext($image, 14, 0, 220, 180, imagecolorallocatehex($image,'#'.mysql_escape_string($_GET['about_color'])), $font, $_GET['about2'] );
// 회원 닉네임
imagettftext($image, 40, 0, 290, 58, $color, $font, $nickname );
// 회원 레벨 Lv
imagettftext($image, 24, 0, 210, 35, $color, $font, 'Lv.' );
(생략)
같은 코드가 이중으로...