欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

shell 批量压缩指定目录及子目录内图片 shellcompressconvertfindsize 

程序员文章站 2024-03-26 13:11:59
...

DevStore小编专栏

 

shell 批量压缩指定目录及子目录内图片

用户上传的图片,一般都没有经过压缩,造成空间浪费。因此需要编写一个程序,查找目录及子目录的图片文件(jpg,gif,png),将大于某值的图片进行压缩处理。

 

代码如下:

 

[plain] view plaincopy
  1. #!/bin/bash  
  2.   
  3. # 查找目录及子目录的图片文件(jpg,gif,png),将大于某值的图片进行压缩处理  
  4.   
  5. # Config  
  6.   
  7. folderPath='/home/fdipzone/photo'   # 图片目录路径  
  8.   
  9. maxSize='1M'    # 图片尺寸允许值  
  10. maxWidth=1280   # 图片最大宽度  
  11. maxHeight=1280  # 图片最大高度  
  12. quality=85      # 图片质量  
  13.   
  14.   
  15. # 压缩处理  
  16. # Param $folderPath 图片目录  
  17. function compress(){  
  18.   
  19.     folderPath=$1  
  20.   
  21.     if [ -d "$folderPath" ]; then  
  22.   
  23.         for file in $(find "$folderPath" \( -name "*.jpg" -or -name "*.gif" -or -name "*.png" \) -type f -size +"$maxSize" ); do  
  24.   
  25.             echo $file  
  26.   
  27.             # 调用imagemagick resize图片  
  28.             $(convert -resize "$maxWidth"x"$maxHeight" "$file" -quality "$quality" "$file")  
  29.   
  30.         done  
  31.   
  32.     else  
  33.         echo "$folderPath not exists"  
  34.     fi  
  35. }  
  36.   
  37. # 执行compress  
  38. compress "$folderPath"  
  39.   
  40. exit 0