The above commands strip extra data (called metadata–read more about photo meta data) The two commands are:ExifTool which is available for download via most package managers or here.Mogrify, which is part of the imagemagick library. You can read more about mogrify options here, and install imagemagick via your choice of package managers. Any digital photos,… Continue reading Removing Meta Data from Images; Achieve Higher Image Compression
Category: Uncategorized
Batch Reduce Image Size, in One Line Command
Having to batch reduce image sizes can be a pain, but below is the on line command to reduce JPEG image sizes: The above command searches recursively through directories for .jpg formatted files, using the find and mogrify commands. Adding -exec to the end of the find command passes and found item onto whatever command… Continue reading Batch Reduce Image Size, in One Line Command