일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- elasticsearch
- devops
- AWS
- Spring
- Git
- redis
- laravel
- linux
- tool
- Gradle
- 맛집
- springboot
- ReactJS
- MySQL
- it
- JVM
- IntelliJ
- javascript
- Spring Batch
- jenkins
- Spring Boot
- php
- jsp
- 요리
- Web Server
- Oracle
- ubuntu
- java
- Design Patterns
- db
- Today
- Total
아무거나
gd 라이브러리 관련 함수 본문
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)
'PHP > PHP' 카테고리의 다른 글
apache에서 index.php 죽이기 (0) | 2019.03.27 |
---|---|
json_encode 함수 옵션 (0) | 2019.03.27 |
PHP 이미지 파일 여부 체크 (0) | 2019.03.27 |
array_diff를 사용했을때 같은 값인데 diff인 문제 (0) | 2019.03.26 |
[dynamoDB] php sdk datatype error 관련 내용 (0) | 2019.03.12 |