https://www.youtube.com/watch?v=LKnqECcg6Gw
and noticed the same problem with IM -blur and -gaussian-blur
![Image](http://i.imgur.com/pJi6VsQ.jpg)
Notice the dark line in the middle.
Is there an easy way to fix this?
Code: Select all
convert -size 300x300 xc:red xc:green1 +append \
-evaluate pow 2 -blur 0x3 -evaluate pow 0.5 tmp.png
Code: Select all
convert -size 50x50 xc:red xc:green1 +append -blur 0x30 show:
convert -size 50x50 xc:red xc:green1 +append -colorspace RGB -blur 0x30 -colorspace sRGB show:
convert -size 50x50 xc:red xc:green1 +append -colorspace LAB -blur 0x30 -colorspace sRGB show:
convert -size 50x50 xc:red xc:green1 +append -colorspace LUV -blur 0x30 -colorspace sRGB show: