wkhtmltox 설치

이 확장 프로그램의 소스 코드와 Windows용 바이너리는 » github에서 호스팅합니다.

소스 코드 가져오기 및 확장 빌드:

git clone https://github.com/krakjoe/wkhtmltox
cd wkhtmltox
phpize
./configure --with-wkhtmltox=/path/to/wkhtmltox/installation
make
sudo make install
                

업데이트 가져오기 및 확장 재구축:

cd wkhtmltox
phpize --clean
git pull origin master
phpize
./configure --with-wkhtmltox=/path/to/wkhtmltox/installation
make
sudo make install