2018년 10월 14일 일요일

windows10 업그레이드 부팅 불가 오류(WDF_VIOLATION)

윈도우10 1809 업데이트 후 재부팅 과정에서 WDF_VIOLATION 오류가 발생하는 경우 지옥을 경험하게 된다.(HP에서 발생)

https://www.bleepingcomputer.com/news/microsoft/hp-pcs-getting-wdf-violation-bsod-after-installing-windows-10-updates/

교훈 :
1. 업데이트전 백업 하기
2. 대규모 기능업데이트는 남들보다 나중에 설치하기

여러 PDF파일을 하나로 병합 및 최적화


Ghostscript가 설치 되어 있지 않은경우
#] yum install ghostscript


여러 PDF 파일 병합 및 최적화
#] gs -sDEVICE=pdfwrite -dUseCIEColor=true -dCompatibilityLevel=1.4 -dPDFSETTINGS=/screen -dNOPAUSE -dQUIET -dBATCH -dDetectDuplicateImages -dCompressFonts=true -r150 -sOutputFile=new_pdf.pdf old_pdf1.pdf old_pdf2.pdf old_pdf3.pdf



※ 상세옵션 : https://ghostscript.com/doc/current/Ps2pdf.htm
PDF를 JPG로 변환하기(Ghostscript, Centos)

PDF를 JPG로 변환하기(Ghostscript, Centos)



Ghostscript란?
어도비(Adobe)의 포스트스크립트(PostScript) 및 PDF 해석기로 이미지 추출 및 PDF 변환에 사용이 가능하다.



설치여부확인
#] yum list ghostscript

 yum으로 Ghostscript 설치
#] yum install ghostscript


최신버전 설치
https://www.ghostscript.com/download/gsdnld.html

PDF에서 JPG파일로 변환하기
#] gs -dSAFER -dBATCH -dUseCIEColor=true -dNOPAUSE -sDEVICE=jpeg -dTextAlphaBits=4 -dGraphicsAlphaBits=4 -r150 -sOutputFile=image_name.jpg pdf_name.pdf



※ 옵션설명 : https://ghostscript.com/doc/current/Ps2pdf.htm
cafe24 호스팅의 경우에도 php의 exec 함수로 명령어 실행이 가능하다.