To compress PNG files to JPG, you can follow steps below: I. Convert all PNG files to JPG: Create a script using your favorite Linux text editor and type in the following lines: for i in $(ls *.png); do convert $i $i.jpg done II. Convert the JPG quality to 50% compression To compress the JPG … Continue reading Convert and compress PNG files to JPG in bulk