Shell script to find largest PNG files in directory recursively

The following shell script finds the largest PNG files in a directory recursively and prints their sizes in human-readable format:

find . -iname "*.png" -type f -exec du -h {} + | sort -rh | head -n

where: