#author("2024-06-06T10:09:12+00:00","","") #author("2024-06-06T10:14:43+00:00","","") *Archive / BlueTest : ぶるうテスト [#i46e45be] **これなに [#f8cdaefd] -世界一ばらまかれたらしいと評判の[[地球の写真(6MBのjpg):https://ja.wikipedia.org/wiki/%E3%82%B6%E3%83%BB%E3%83%96%E3%83%AB%E3%83%BC%E3%83%BB%E3%83%9E%E3%83%BC%E3%83%96%E3%83%AB]]をbmp(26MB)やpng(14MB)にしたうえで圧縮検証する。出典Wikipedia。 --変換はPaint.NET を用いる。 --bmp jpg png の3ファイルは Windows で変換作業してscpでLinuxに送り、tar系の検証を行う。timeコマンド込。 **時間測定コミコミ圧縮率優先の適当テスト in bmp [#oebadb06] ***圧縮 [#ef51ef2a] $ tar cvf bluebmp.tar *.bmp; time gzip -9 bluebmp.tar 2.964 total $ tar cvf bluebmp.tar *.bmp; time bzip2 -9 bluebmp.tar 2.114 total $ tar cvf bluebmp.tar *.bmp; time bzip3 bluebmp.tar 4.520 total $ tar cvf bluebmp.tar *.bmp; time xz -9 bluebmp.tar 25.639 total $ tar cvf bluebmp.tar *.bmp; time lzma -9 bluebmp.tar 24.489 total $ tar cvf bluebmp.tar *.bmp; time zstd -19 bluebmp.tar 17.510 total $ tar cvf bluebmp.tar *.bmp; time zstd --ultra -22 bluebmp.tar 22.533 total -結果 : gz > zst > xz=lzma > bz2 -結果 : gz > zst > xz=lzma > bz2 ( > bz3 ) **ボツネタ : png を圧縮 [#ned5eb93] ファイルサイズが縮みませんでした。当たり前だw jpgの圧縮はさらに問題外だと思われるので検証中止。