Calculating hdiutil's compression ratio

987 Views Asked by At

In my app I'm using Apple's hdiutil command line utility to create compressed disk images (DMGs) of folders/volumes. Is there any way to calculate the compressed size of a given source path? I've already checked in the man pages, nothing there.

3

There are 3 best solutions below

0
On BEST ANSWER

Can you just compare the size of the disk image vs the size reported by either df (reporing the size of the volume) or du (reporting the size of files in a directory)?

0
On

Choose Jamie Macey -- his answer is the right one. Use du -s to get your tree size, compare it to the size of the .dmg file.

0
On

hdiutil imageinfo /PATH/TO/IMAGE | grep 'Compressed Ratio'

Example Output:

Compressed Ratio: 0.14393602843180808

Meaning the disk image is 14% of the size of the original. This is using the standard zlib compression (UDZO) on a folder containing just text files however, so the compression amount is much higher than normal.