image2wbmp — WBMP 형식의 이미지를 브라우저나 파일로 출력합니다.
int image2wbmp (리소스 $image [, string $filename [, int $threshold ]] )
image2wbmp()는 이미지에서 filename이라는 WBMP 파일을 생성합니다. image 매개변수는 imagecreatetruecolor()와 같이 이미지를 생성하는 함수의 반환 값입니다.
filename 매개변수는 선택사항입니다. 생략하면 원본 이미지 스트림이 직접 출력됩니다.
<?php$file = 'php.jpg';$image = imagecreatefrompng($file);header('Content-type: ' . image_type_to_mime(IMAGETYPE_WBMP));image2wbmp($file); // 원본 이미지 스트림을 직접 출력합니다. ?>