Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Imagemagickを介してアルファ透明度のPNG-8画像を実行しようとすると、PNG-32に変換され、ファイルサイズが大幅に増加します。
Imagemagickに私の画像タイプを8ビットPNGとして保持させることは可能ですか?
あなたはこのようにそれを行うことができます:
convert test.png PNG8:test2.png
私はIMとPNG8でさまざまな運がありましたが、これは正しい方法です。
私は以下を使用して最良の結果を得るようです
convert src.png -colors 256 PNG8:dest.png