Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- ubuntu
- SW Expert Academy
- 자연어처리
- 우분투
- 맥북
- leetcode
- 코로나19
- 파이썬
- gs25
- Git
- 편스토랑
- Kaggle
- Real or Not? NLP with Disaster Tweets
- 데이콘
- 프로그래머스
- Docker
- 프로그래머스 파이썬
- 더현대서울 맛집
- AI 경진대회
- 편스토랑 우승상품
- hackerrank
- PYTHON
- 금융문자분석경진대회
- 백준
- ChatGPT
- 캐치카페
- Baekjoon
- github
- programmers
- dacon
Archives
- Today
- Total
솜씨좋은장씨
[Python] wand.exceptions.PolicyError: not authorized `./test.pdf' @ error/constitute.c/ReadImage/412 해결방법 본문
Programming/Python
[Python] wand.exceptions.PolicyError: not authorized `./test.pdf' @ error/constitute.c/ReadImage/412 해결방법
솜씨좋은장씨 2020. 12. 29. 22:26728x90
반응형
wand와 ImageMagick을 설치한 후 pdf를 tiff로 변환하려고 할 때
wand.exceptions.PolicyError: not authorized `./test.pdf'@ error/constitute.c/ReadImage/412
위와 같은 오류를 만나게 되었습니다.
위는 imageMagick의 설정에 pdf 관련 설정이 none으로 설정되어있기 때문입니다.
이를 해결하는 방법은 다음과 같습니다.
먼저 설정을 변경할 파일을 vi 편집기로 열어줍니다.
$ sudo vi /etc/ImageMagick-6/policy.xml
$ sudo vi /etc/ImageMagick/policy.xml
위의 두 경로 중 본인의 설치 버전에 맞는 버전의 경로로 들어가면됩니다.
여러 부분 중에서
<policy domainnn="coder" rights="none" pattern="PDF" />
위의 부분을 찾아 rights 부분의 none을 아래처럼 read|write로 수정해주면 됩니다.
<policy domainnn="coder" rights="read|write" pattern="PDF" />
읽어주셔서 감사합니다.
'Programming > Python' 카테고리의 다른 글
Comments