묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
GD설정이 제대로 되긴한것 같은데....
2002.09.03 14:08
<html>
<head>
<title>Death And Rebirth</title>
<style type=text/css>
a:link {color:black; text-decoration:none;}
a:visited {color:black; text-decoration:none;}
a:ativate {color:black; text-decoration:none;}
a:hover {color:a0a0a0; text-decoration:none;}
body {font-size:9pt;}
td {font-size:9pt;}
</style>
</head>
<body>
<center>
here is some test<br>
<?
$image=imagecreate(200,200);
$colorRed=imagecolorallocate($image,255,0,0);
imagefill($image,0,0,$colorRed);
imagepng($image);
?>
</center>
</body>
</html>
이와 같은 소스에서...
다른 함수들은 제대로 먹고 있는데 (즉 GD라이브러리는 잘 동작하고 있는것이겠죠..)
유독...imagepng($image)이부분에서 undefined function error가 나는데염...
밑에 질문을 올렸다가....1.8버젼에서는 gif관련 함수가 안먹을수 있다는 가정하에
imagejpeg(), imagepng()등의 함수를 써봤습니다만...
여전히 동작하지 않는군요...무엇이 문제 일까요..ㅡㅡㅋ
<head>
<title>Death And Rebirth</title>
<style type=text/css>
a:link {color:black; text-decoration:none;}
a:visited {color:black; text-decoration:none;}
a:ativate {color:black; text-decoration:none;}
a:hover {color:a0a0a0; text-decoration:none;}
body {font-size:9pt;}
td {font-size:9pt;}
</style>
</head>
<body>
<center>
here is some test<br>
<?
$image=imagecreate(200,200);
$colorRed=imagecolorallocate($image,255,0,0);
imagefill($image,0,0,$colorRed);
imagepng($image);
?>
</center>
</body>
</html>
이와 같은 소스에서...
다른 함수들은 제대로 먹고 있는데 (즉 GD라이브러리는 잘 동작하고 있는것이겠죠..)
유독...imagepng($image)이부분에서 undefined function error가 나는데염...
밑에 질문을 올렸다가....1.8버젼에서는 gif관련 함수가 안먹을수 있다는 가정하에
imagejpeg(), imagepng()등의 함수를 써봤습니다만...
여전히 동작하지 않는군요...무엇이 문제 일까요..ㅡㅡㅋ
로.. gd가 지원하는 파일타입 확인해 보세요..~!!