아무거나

gd 라이브러리 관련 함수 본문

PHP/PHP

gd 라이브러리 관련 함수

전봉근 2019. 3. 27. 10:14
반응형

GD 라이브러리란? 웹상에서 구동하는 어플리케이션에서 이미지를 효율적으로 다룰수 있게끔 고안된 "명령어의 집합"입니다.


​- bool imagecreatetruecolor(int $width , int $height )  // (PHP 4 >= 4.0.6, PHP 5, PHP 7)  타겟이미지생성함수

 

      ​- bool imageCopyResampled($dst_image , resource $src_image , int $dst_x , int $dst_y , int $src_x , int $src_y , int $dst_w , int $dst_h , int $src_w , int $src_h)

         // (PHP 4 >= 4.0.6, PHP 5, PHP 7)

         // dst_image : 목표 이미지 링크 자원.

         // src_image : 원본 이미지 링크 자원.

         // dst_x : x-coordinate of destination point.

         // dst_y : y-coordinate of destination point.

         // src_x : x-coordinate of source point.

         // src_y : y-coordinate of source point.

         // dst_w : Destination width.

         // dst_h : Destination height.

         // src_w : 원본 너비.

         // src_h : 원본 높이.

 

       - int ImageInterlace(resource $image [, int $interlace = 0 ] // 주어진 이미지에 라인, arc등의 삽입여부를 설정  

         ex) ImageInterlace($dst_image) 나 ImageInterlace($dst_image, 0) 로 써도됨

 

       - bool ImageJPEG(resource $image [, string $filename [, int $quality ]]) : jpeg 파일로 저장 

         ex) ImageJPEG($dst_img)

 

       - bool ImageDestroy(resource $image) : 생성된 이미지 객체를 메모리에서 해제한다.  

         ex) ImageDestroy($src_img)​ 

반응형
Comments