php imagecolorallocate( )와 imagefill( )
본문
php imagecolorallocate( )와 imagefill( )의 차이가 뭣일까요?
imagecolorallocate( )는 rgb로 색상을 옵젝트에 채우고
imagefill( )은 지정된 x,y지점부터 색상을 채우는데
색상 채우는 가능으로 같은 것을 처리하는걸로 보이는데,
thumbnail.lib 에 대략 345행쯤에,
$current_transparent = imagecolorallocate($dst, $transparent_color['red'], $transparent_color['green'], $transparent_color['blue']);
imagefill($dst, 0, 0, $current_transparent);
왜 또 한번 호출되는지요,
감사합니다
답변을 작성하시기 전에 로그인 해주세요.