脚本 生成图片水印

功能,给巡逻地点加上图片水印。

若需要定制字体,自行修改绘画逻辑。

bash 复制代码
#!/bin/bash

# ================= 字体设置 =================
# 自动寻找安卓或Linux中文字体
FONT_PATH=""
possible_fonts=(
    "/system/fonts/NotoSansCJK-Regular.ttc"
    "/system/fonts/DroidSansFallback.ttf"
    "/usr/share/fonts/opentype/noto/NotoSansCJK-Regular.ttc"
    "/usr/share/fonts/wqy-zenhei/wqy-zenhei.ttc"
)

for font in "${possible_fonts[@]}"; do
    if [ -f "$font" ]; then
        FONT_PATH="$font"
        break
    fi
done

[ -z "$FONT_PATH" ] && FONT_PATH="sans-serif" # 找不到这就回退
# ===========================================

command -v magick >/dev/null || { echo "请先安装: pkg install imagemagick"; exit 1; }

read -p "请输入图片路径: " image_path
[ -f "$image_path" ] || { echo "文件不存在"; exit 1; }

# === 获取图片宽度,计算比例 ===
width=$(magick identify -format "%w" "$image_path")

# 计算字号 (根据图片宽度动态调整)
# 时间大字: 18% 宽度
fs_time=$(echo "$width * 0.18" | bc | cut -d. -f1)
# 日期小字: 4.5% 宽度
fs_meta=$(echo "$width * 0.045" | bc | cut -d. -f1)
# 右下角Logo字: 3.5% 宽度
fs_logo=$(echo "$width * 0.035" | bc | cut -d. -f1)

# 间距控制
margin_bottom=$(echo "$width * 0.08" | bc | cut -d. -f1) # 整体离底部的距离
icon_size=$(echo "$fs_meta * 1.2" | bc | cut -d. -f1)    # 红色图标大小
logo_icon_size=$(echo "$fs_logo * 1.5" | bc | cut -d. -f1) # 相机图标大小

# === 文本内容 ===
current_time=$(date +"%H:%M")
current_date=$(date +"%Y-%m-%d")
# 中文星期处理
week_num=$(date +"%u")
case $week_num in
    1) w="一";; 2) w="二";; 3) w="三";; 4) w="四";; 5) w="五";; 6) w="六";; 7) w="日";;
esac
date_str="$current_date 星期$w"
location_str="上海市 · 静安区"

# 输出文件名
dir=$(dirname "$image_path")
filename=$(basename "$image_path")
output_file="$dir/${filename%.*}_水印V2.jpg"

echo "正在生成完美水印..."

# ================= 图像处理逻辑 =================
# 这里的逻辑是:
# 1. 制作 [红点图标]:在 100x100 的固定画布上画,然后缩放到文字高度。
# 2. 制作 [相机图标]:同上,固定画布画好,再缩放。
# 3. 拼接 [日期+红点+地点]:横向拼接。
# 4. 组合 [时间] 和 [上面那行]:纵向叠加。
# 5. 合成到底图。

magick "$image_path" \
    \
    \( \
        \
        \( -background none -fill white -font "$FONT_PATH" -pointsize "$fs_time" label:"$current_time" \) \
        \
        \( \
            \( -background none -fill white -font "$FONT_PATH" -pointsize "$fs_meta" label:"$date_str " \) \
            \
            \( -size 100x100 xc:none -fill "#FF2222" \
               -draw "circle 50,40 50,75" \
               -draw "path 'M 20,45 L 50,100 L 80,45 Z'" \
               -draw "circle 50,40 50,50" \
               -resize x"$icon_size" \) \
            \
            \( -background none -fill white -font "$FONT_PATH" -pointsize "$fs_meta" label:" $location_str" \) \
            \
            -gravity Center +append \
        \) \
        \
        -gravity Center -append -background none \
    \) \
    -gravity South -geometry +0+"$margin_bottom" -composite \
    \
    \( \
        \( -size 100x100 xc:none -stroke white -strokewidth 8 -fill none \
           -draw "roundrectangle 5,20 95,80 10,10" \
           -stroke none -fill white \
           -draw "circle 50,50 50,65" \
           -draw "rectangle 70,25 85,35" \
           -resize x"$logo_icon_size" \
        \) \
        \( -background none -fill white -font "$FONT_PATH" -pointsize "$fs_logo" label:" 水印相机" \) \
        -gravity Center +append \
    \) \
    -gravity SouthEast -geometry +"$(($width/30))"+"$(($width/40))" -composite \
    \
    "$output_file"

echo "✅ 完成!请查看: $output_file"
相关推荐
ywf12151 天前
前端的dist包放到后端springboot项目下一起打包
前端·spring boot·后端
dapeng28701 天前
分布式系统容错设计
开发语言·c++·算法
2501_945423541 天前
用Matplotlib绘制专业图表:从基础到高级
jvm·数据库·python
2301_793804691 天前
使用Python处理计算机图形学(PIL/Pillow)
jvm·数据库·python
恋猫de小郭1 天前
2026,Android Compose 终于支持 Hot Reload 了,但是收费
android·前端·flutter
qq_417695051 天前
代码热修复技术
开发语言·c++·算法
hpoenixf1 天前
2026 年前端面试问什么
前端·面试
还是大剑师兰特1 天前
Vue3 中的 defineExpose 完全指南
前端·javascript·vue.js
泯泷1 天前
阶段一:从 0 看懂 JSVMP 架构,先在脑子里搭出一台最小 JSVM
前端·javascript·架构
Liu628881 天前
C++中的工厂模式高级应用
开发语言·c++·算法