パスワードを忘れた? アカウント作成
259644 journal

beroの日記: 特殊なアルゴリズムで劣化させず画像圧縮できる「Caesium」が詐欺臭い件

日記 by bero

特殊なアルゴリズムで劣化させず画像圧縮できる「Caesium」が詐欺臭い件

「Caesium」は特殊なアルゴリズムで劣化を最小限に抑えつつ、サイズを圧縮できるツールだ。

「Caesium」は高性能な画像圧縮ツール。通常のビューワーとは違ったアルゴリズムを採用しており、 ほかのツールと比べて画質を維持したままサイズを小さくできるのが長所。

誤訳ではなく原文にも書いてある

Caesium reduces the size of your picture up to 90%, preserving the original quality. Caesium uses a special compression algorithm that allows you to save a lot of space and easily upload your pictures on the web (on sites like Facebook, MySpace etc) in a moment. The software is user-friendly with a simple and clear interface and supports all the commons image format (JPG, PNG, GIF, BMP, WMF).

どんな「特殊なアルゴリズム」か気になって、sourceforgeでソース公開してるので見てみたが、
どう見ても単に.net標準ライブラリ呼んで圧縮保存してるだけにしか見えないんだが

if (formatCB.Text == "JPG")
                                        {
                                                SaveJpeg(temp + suffix, img, qualitySlider.Value);
                                        }
                                        else if (formatCB.Text == "PNG")
                                        {
                                                img.Save(temp + suffix, ImageFormat.Png);
                                        }
                                        else
                                        {
                                                img.Save(temp + suffix, ImageFormat.Bmp);
                                        }
...
                public static void SaveJpeg(string path, Image img, int quality)
                {
...
                        EncoderParameters encoderParams = new EncoderParameters(1);
                        encoderParams.Param[0] = qualityParam;

                        img.Save(path, jpegCodec, encoderParams);

「圧縮後の劣化を目視しながら保存するソフト」としての存在意義はあるから、詐欺的な売り文句にする必要ないのに。
本当に詐欺る気ならあえてオープンソースでバラすのもわからん。
英語よくわからず適当に書いたとか?

この議論は賞味期限が切れたので、アーカイブ化されています。 新たにコメントを付けることはできません。
typodupeerror

アレゲはアレゲを呼ぶ -- ある傍観者

読み込み中...