我正在处理一大批图片,这些图片在黑色背景上有一枚银色硬币。首先,我通过计算尺寸来修剪文件:trimbox=$(convert $f -fuzz 35% -format "%@" info:)
我将前 2 个参数加 50,将后 2 个参数各加 25(以使原始图片的更多部分超出 trim 检测的范围)。我已通过移除这些偏移进行测试,结果没有任何变化。
convert "$f" -crop "$trimbox" +repage "$baseFilename-trimmed.jpg"
修剪后我将使用:
command="$baseoFilename-trimmed.jpg $baserFilename-trimmed.jpg "
command2="+repage _MG_$first"
convert $command -append $command2-vmerged.jpg
convert $command +append $command2-hmerged.jpg
合并文件。我尝试过使用 -background black 或 -fill black 的变体,但无济于事。
出现细长的白色矩形是因为两幅图像的尺寸略有不同。
我希望它们的大小调整到相同,这样就不需要进行任何校正,但也可以接受黑条。
文件样本:
当然,在白色背景上查看这些会掩盖我所说的内容。
答案1
此脚本应该可以满足您的要求。它在修剪时使用图像的最大宽度或最大高度。
# !/bin/bash
set -eu
gettrimbox() {
# Some lines were based on the code of Fred Weinhaus available on http://www.fmwconcepts.com/imagemagick/autotrim/
trimbox=$(convert "$1" -fuzz 35% -format "%@" info: | tr -cs "0-9\n" " ")
r_w=$(echo $trimbox | cut -d\ -f1)
r_h=$(echo $trimbox | cut -d\ -f2)
r_xoff=$(echo $trimbox | cut -d\ -f3)
r_yoff=$(echo $trimbox | cut -d\ -f4)
r_xcenter=$(((r_w/2)+r_xoff))
r_ycenter=$(((r_h/2)+r_yoff))
r_w=$((r_w+50))
r_h=$((r_h+50))
}
f1=$1
f2=$2
number1=$(echo "$f1" | tr -dc "0-9")
gettrimbox "$f1"
w1=$r_w; h1=$r_h
xcenter1=$r_xcenter; ycenter1=$r_ycenter
gettrimbox "$f2"
w2=$r_w; h2=$r_h
xcenter2=$r_xcenter; ycenter2=$r_ycenter
if [ $w1 -gt $w2 ]; then max_w=$w1; else max_w=$w2; fi
if [ $h1 -gt $h2 ]; then max_h=$h1; else max_h=$h2; fi
convert "$f1"[$max_w"x"$h1+$((xcenter1-(max_w/2)))+$((ycenter1-(h1/2)))] \
"$f2"[$max_w"x"$h2+$((xcenter2-(max_w/2)))+$((ycenter2-(h2/2)))] \
-append +repage "_MG_$number1-vmerged.jpg"
convert "$f1"[$w1"x"$max_h+$((xcenter1-(w1/2)))+$((ycenter1-(max_h/2)))] \
"$f2"[$w2"x"$max_h+$((xcenter2-(w2/2)))+$((ycenter2-(max_h/2)))] \
+append +repage "_MG_$number1-hmerged.jpg"