Categories
PHP

우분투에서 PHP의 GD 라이브러리 설치하기

우분투에서 PHP 의 GD 라이브러리를 설치하는 방법을 알아보자.

1. php-gd 패키지 설치

아래 명령으로 패키지 정보를 다운로드한다.

apt update

php-gd 패키지를 설치한다.

apt install php-gd

2. 설치 결과 확인

아래 명령으로 GD 라이브러리가 설치되었는지 확인한다.

php -i | grep GD

GD 라이브러리가 설치되었다면 아래와 같이 출력된다.

GD Support => enabled
GD headers Version => 2.3.0
GD library Version => 2.3.0

Leave a Reply

Your email address will not be published. Required fields are marked *