-bordercolor seems not working

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
ziasumo

-bordercolor seems not working

Post by ziasumo »

I run that command but border color does not working.

convert d:/canvas_spine.jpg -border 8x8 -bordercolor white d:/canvas_spine.jpg
What could be the problem
ziasumo

Re: -bordercolor seems not working

Post by ziasumo »

Thanks buddy..Its working now I just changed as
convert d:/canvas_spine.jpg -bordercolor white -border 8x8 d:/canvas_spine.jpg
-bordercolor before .-border 8x8
But could not understand why IM behaved like this..
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: -bordercolor seems not working

Post by fmw42 »

settings such as -bordercolor, need to come before the option that uses it, such as -border
Post Reply