0
我有500px寬的圖像。想要在左側和右側添加一些空白或填充。 我想:如何向Imagemagick中的文本添加填充?
convert source.jpg \
-size 500x \
-background blue \
-fill white \
-pointsize 32 \
caption:"Sed felis eros, ornare ut cursus a, imperdiet sit amet purus." \
+swap \
-append \
output.jpg
結果:
然後使用拼接,它增加了一個藍色的柱嘗試:
convert source.jpg \
-size 500x \
-background blue \
-fill white \
-pointsize 32 \
caption:"Sed felis eros, ornare ut cursus a, imperdiet sit amet purus." \
-splice 10x10 \
+swap \
-append \
output.jpg
結果:
如何僅在藍色文本框周圍填充?
太好了!謝謝emcconville。但是如果想要在藍框周圍添加頂部和底部填充,我該怎麼做? – g13