png gif 확장자 오류
본문
첨부파일에
png /gif 파일을 넣으면 인식을 못하네요
워터마크 소스를 빼면 인식이 되는데
워터마크 소스만 추가하면 jpg 파일만 인식을 하고 다른확장자는 인식을 못합니다 ㅠㅠ
무슨 문제인걸까요
워터마크소스는
bbs- write_update.php에
// 워터마크 기능 추가
// 워터마크를 쓰면 워터마크 이미지로 변경
for($i = 0; $i < count($upload); $i++){ //추가
$ch = curl_init ("http://".$_SERVER['HTTP_HOST']."/watermark/index.php?url=".urlencode("/data/file/".$bo_table."/".$upload[$i]['file']));
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_BINARYTRANSFER,1);
$content = curl_exec ($ch);
curl_close ($ch);
$fp = fopen(G5_DATA_PATH.'/file/'.$bo_table.'/'.$upload[$i]['file'], 'w');
fwrite($fp, $content);
fclose($fp);
}
이소스를 추가하였습니다.