1
我有一個original圖像,我只想調整它的大小,但在調整大小時,圖像變得更紅。我嘗試了很多參數,但沒有人工作。另外奇怪的是,在我的本地ubuntu上一切正常,問題只發生在CentOs服務器上;imagemagick:在png文件轉換過程中出現錯誤的顏色
這是我的嘗試:
convert fileForRedTest.png -background white -alpha remove fileForTest-result.png
convert fileForRedTest.png -colorspace RGB fileForRedTest-result.png
convert fileForRedTest.png -define png:bit-depth=16 fileForRedTest-result.png
convert fileForRedTest.png -define png:bit-depth=16 -define png:color-type=6 fileForRedTest-result.png
convert fileForRedTest.png png32:fileForRedTest-result.png
您的本地服務器可能具有不同版本的Imagemagick。如果它是默認安裝,它可能會過期三年或更久,並且Imagemagick正在持續開發中。 – Bonzo
我更新了版本,但問題依然存在 –