Computer >> 컴퓨터 >  >> 프로그램 작성 >> PHP

PHP에서 imagecreatefromwbmp() 함수를 사용하여 WBMP 파일 또는 URL에서 새 이미지를 만드는 방법은 무엇입니까?

<시간/>

PHP에서 imagecreatefromwbmp() WBMP 파일 또는 URL에서 새 이미지를 만드는 데 사용되는 내장 기능입니다. imagecreatefromwbmp() 주어진 파일 이름에서 얻은 이미지를 나타내는 이미지 식별자를 반환합니다. imagecreatefromwbmp()를 사용할 수 있습니다. WBMP 파일에서 이미지를 로드한 후 이미지를 편집할 때마다. imagewbmp() 함수를 사용하여 이미지를 WBMP로 변환할 수 있습니다.

구문

resource imagecreatefromwbmp(string $filename)

매개변수

imagecreatefromwbmp() $filename 매개변수 하나만 사용 . 이미지의 이름을 담고 있습니다.

반환 값

imagecreatefromwbmp() 성공 시 이미지 리소스 식별자를 반환하고 false 시 오류를 제공합니다.

예시 1

<?php
   // Loading the WBMP image from the local drive folder
   $img = imagecreatefromwbmp'C:\xampp\htdocs\pic.wbmp');
   // View the loaded image in the browser
   imagewbmp($img);
   imagedestroy($img);
?>

출력

Note − The above PHP code will load the content into the browser in the unsupported form text as browsers don't support WBMP.

예시 2

<?php
   // Load a WBMP image from the local drive folder
   //We can convert the image to WBMP using the online converter
   //or using the imagewbmp() function
   $img = imagecreatefromwbmp('C:\xampp\htdocs\Images\img30.wbmp');
   
   // Save the GIF image into the given local drive folder path.
   imagejpeg($img,'C:\xampp\htdocs\pic.gif');
   imagedestroy($img);
?>

imagecreatefromwbmp()를 사용하기 전의 원본 입력 이미지

PHP에서 imagecreatefromwbmp() 함수를 사용하여 WBMP 파일 또는 URL에서 새 이미지를 만드는 방법은 무엇입니까?

imagecreatefromwbmp() 사용 후 이미지 출력

PHP에서 imagecreatefromwbmp() 함수를 사용하여 WBMP 파일 또는 URL에서 새 이미지를 만드는 방법은 무엇입니까?

참고 - WBMP는 무선 비트맵 파일 형식입니다. 모바일 컴퓨팅 장치에 최적화된 WAP 그래픽 형식입니다. WBMP 형식의 사진은 비트 형식으로 저장됩니다. 즉, 이미지의 모든 픽셀은 1비트로 저장됩니다. WBMP 파일을 열려면 무선 비트맵 파일 형식 소프트웨어가 필요합니다.