linux图片批量压缩shell脚本

资源哥经常搭建各类网站,有的网站运营时间长了,图片越来越多,同时上传的时候忘记裁剪图片的话,网站空间就会很大,同时也浪费服务器带宽。

怎么办呢,写一个脚本批量压缩一下吧。

首先安装一下服务器组件

centos环境:

yum install ImageMagick -y

Debian环境:

apt-get install ImageMagick -y

#!/bin/bash

# 查找目录及子目录的图片文件(jpg,gif,png),将大于某值的图片进行压缩处理

# Config

folderPath='/hackerfans/webapps'  # 服务器图片目录路径,结尾不带/

maxSize='1M'  # 图片尺寸允许值
maxWidth=1280  # 图片最大宽度
maxHeight=1280 # 图片最大高度
quality=80   # 图片质量


# 压缩处理
# Param $folderPath 图片目录
function compress(){

  folderPath=$1

  if [ -d "$folderPath" ]; then

    for file in $(find "$folderPath" \( -name "*.jpg" -or -name "*.gif" -or -name "*.png" \) -type f -size +"$maxSize" ); do

      echo $file

      # 调用imagemagick resize图片
      $(convert -resize "$maxWidth"x"$maxHeight" "$file" -quality "$quality" -colorspace sRGB "$file")

    done

  else
    echo "$folderPath not exists"
  fi
}

# 执行compress
compress "$folderPath"

exit 0

脚本中包含注释,将此脚本保存为.sh格式,在服务器执行即可

如果你是宝塔面板,可以设置成计划任务,每周执行一次就OK了

linux图片压缩shell脚本截图
黑侠网络,免费分享互联网!
我的主页 黑侠网络 » linux图片批量压缩shell脚本