Chrome headless
From IT위키
- 리눅스 등 GUI가 없는 셸 환경에서 크롬 웹 브라우저의 기능을 이용할 수 있도록 지원하는 CLI용 옵션
설치[edit | edit source]
크롬을 그대로 설치 후 --headless 옵션을 사용한다.
$ sudo vi /etc/yum.repos.d/google-chrome.repo [google-chrome] name=google-chrome baseurl=http://dl.google.com/linux/chrome/rpm/stable/x86_64 enabled=1 gpgcheck=1 gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub $ sudo yum install google-chrome-stable
사용법[edit | edit source]
- pdf 출력
google-chrome --headless --disable-gpu --no-margins --print-to-pdf-no-header --print-to-pdf={웹페이지 또는 HTML 경로}
관련 옵션[edit | edit source]
- 소스 코드를 통해 확인 가능
- 예시
- --default-background-color : 백그라운드 칼라 지정
- --hide-scrollbars : 스크롤바 없애기
- --print-to-pdf : PDF로 출력
- --print-to-pdf-no-header : PDF로 출력하되 출력물 헤더 생략