Rsync command to only synchronize images

cd /srcpath
rsync -avxzPS –files-from=<(find . -type f -exec file --mime-type {} \+ | awk -F: '{ if ($2 ~/image\//) print $1}') ./

Be aware when running on the root of a large filesystem the creation of the filelist can take some time.