• 支持 JPEG、PNG、WebP、GIF 的导入、转换、压缩与等比例缩放,自动比较候选格式并输出更优体积,图片默认在本机处理
• 提供目标体积控制、批量导入、文件夹监控、剪贴板监听和全局快捷键,适合高频图片处理工作流
• 基于 Tauri 2 + Rust 构建,支持 Windows、macOS、Linux 与自托管 Web 端,并集成悬浮窗操作、水印和 S3 R2 OSS FTP SFTP 上传能力
https://github.com/amiaoapp/PicLite
brew install imagemagickbrew info imagemagick 查看 路径
==> imagemagick: stable 7.1.1-29 (bottled), HEAD
Tools and libraries to manipulate images in many formats
https://imagemagick.org/index.php
/usr/local/Cellar/imagemagick/7.1.1-29_1 (809 files, 29MB) */usr/local/Cellar/imagemagick/7.1.1-29_1cd /tmp/webp 此为你存放 webp 文件的目录/usr/local/Cellar/bin/imagemagick/7.1.1-29_1/mogrify -format gif *.webpbrew install ffmpegfor file in *.gif; do ffmpeg -i "$file" -movflags faststart -pix_fmt yuv420p -vf "scale=trunc(iw/2)*2:trunc(ih/2)*2" "${file%.gif}.mp4"; done