答え1
ぼかし機能を使用するには、元の画像と同じサイズの黒と白の画像を作成する必要があります(黒は画像と同じまま、白 - 青)。
薄暗い:
convert main.jpeg blur2.png -compose blur -define compose:args=10 -composite main_blured.jpeg
compose:args=<arg> opacity of bluring
この問題は以下でも解決できます。-flatten
特徴:
convert main.jpeg -page +275+580 blur.png -flatten main_blured.jpeg
-page +275+580 start position of "blurring"/flattening image main.jpeg
結果の画像は次のとおりです(より鮮明な画像を得るために位置座標を使用できます)。