有沒有辦法將convert
圖像轉換為 8 位點陣圖?
給定語法:
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
您可以在轉換手冊頁上找到所有可能的選項。:)
高溫高壓
引用自:https://unix.stackexchange.com/questions/525037