# Compression Commit
This commit performs both lossless and lossy compression on every .obj and .png in homedecor. The .png files were all 100% losslessly compressed using ect.exe and optipng.exe (more details below) at maximum settings. The .obj files were lossy-compressed so that comments were removed, trailing 000's were removed and all numbers rounded to 3 decimal places max. Blender exports at 6 decimal places but for minetest, 3 decimal places is the absolute maximum a person with anything under a 256K screen will ever need. ## Results ``` Original entire modpack size: 6343.5 KB New entire modpack size: 5312.2 KB Total Reduction: 1031.3 KB (16.3% less) ``` Please note that actual media size is likely more like 4,500 KB so media reduction is more around 20-25%. ## Details / What actions were actually performed Used these programs: https://github.com/ExeVirus/Compress-Obj https://sourceforge.net/projects/optipng/ https://github.com/fhanau/Efficient-Compression-Tool Ran this command on every .obj: (fast) ``` luajit.exe compress.lua -f <file> -precision 3 ``` Ran these commands on every .png: (slow) ``` ect.exe -9 -strip --allfilters-b <file> optipng.exe -o7 -strip all -clobber <file> ``` Note that for future compression, I recommend only using optipng.exe instead of both. ECT can get better results but it takes a LOT longer and only ever saves another 1-2% of the file size. Not worth an extra 10-20 seconds per texture file in my opinion. ## Time spent Roughly 2 Hours from start to finish + commit + PR
Before Width: | Height: | Size: 102 B After Width: | Height: | Size: 101 B |
Before Width: | Height: | Size: 170 B After Width: | Height: | Size: 128 B |
Before Width: | Height: | Size: 72 B After Width: | Height: | Size: 70 B |
Before Width: | Height: | Size: 147 B After Width: | Height: | Size: 146 B |
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.6 KiB |
Before Width: | Height: | Size: 82 B After Width: | Height: | Size: 77 B |
Before Width: | Height: | Size: 112 B After Width: | Height: | Size: 93 B |
Before Width: | Height: | Size: 156 B After Width: | Height: | Size: 152 B |
Before Width: | Height: | Size: 384 B After Width: | Height: | Size: 243 B |
Before Width: | Height: | Size: 302 B After Width: | Height: | Size: 296 B |
Before Width: | Height: | Size: 245 B After Width: | Height: | Size: 191 B |
Before Width: | Height: | Size: 92 B After Width: | Height: | Size: 73 B |
Before Width: | Height: | Size: 603 B After Width: | Height: | Size: 588 B |
Before Width: | Height: | Size: 539 B After Width: | Height: | Size: 536 B |
Before Width: | Height: | Size: 163 B After Width: | Height: | Size: 141 B |
Before Width: | Height: | Size: 170 B After Width: | Height: | Size: 126 B |
Before Width: | Height: | Size: 183 B After Width: | Height: | Size: 165 B |
Before Width: | Height: | Size: 123 B After Width: | Height: | Size: 89 B |
Before Width: | Height: | Size: 115 B After Width: | Height: | Size: 86 B |
Before Width: | Height: | Size: 300 B After Width: | Height: | Size: 299 B |
Before Width: | Height: | Size: 305 B After Width: | Height: | Size: 299 B |
Before Width: | Height: | Size: 320 B After Width: | Height: | Size: 314 B |
Before Width: | Height: | Size: 4.7 KiB After Width: | Height: | Size: 4.4 KiB |
Before Width: | Height: | Size: 162 B After Width: | Height: | Size: 121 B |
Before Width: | Height: | Size: 118 B After Width: | Height: | Size: 92 B |
Before Width: | Height: | Size: 571 B After Width: | Height: | Size: 353 B |
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 121 B After Width: | Height: | Size: 83 B |
Before Width: | Height: | Size: 137 B After Width: | Height: | Size: 101 B |
Before Width: | Height: | Size: 124 B After Width: | Height: | Size: 122 B |