convert
이미지를 8비트 비트맵으로 변환하는 방법이 있습니까 ?
답변1
주어진 구문:
convert [input-option] input-file [output-option] output-file
다음과 같이 간단하게 작업을 수행할 수 있습니다.
convert file-to-convert -depth 8 output-file
하지만 다음과 같을 수도 있습니다.
convert file-to-convert -depth 8bit output-file
당신은 찾을 수 있습니다모두가능한 옵션변화맨 페이지. :)
화타이