To List all pngPNG and jpg fileJPEG files which are 7 days old with absolute path. Here you.
$ find $PWD/ -mtime -7 -print -exec grep -e ".png\|.jpg" {} \;
Here $PWD$PWD will be added to every file matched.
find $PWD/ -mtime -7 -print -exec grep -e ".png|.jpg" {} ;