extract edges from this image whitout lose the color of edges ?

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?".
diegomage
Posts: 205
Joined: 2017-03-08T10:12:28-07:00
Authentication code: 1151

Re: extract edges from this image whitout lose the color of edges ?

Post by diegomage »

this works fine very thankyou for your asnwer

Code: Select all

convert ZrFne.png \( -clone 0 -morphology edgeout diamond:1 -threshold 0 \) -compose multiply -composite -fill white -opaque black result3.png
Post Reply