Consider the following svg snippet:
<linearGradient id="redgradient" x1="0%" x2="0%" y1="0%" y2="100%">
<stop offset="0%" stop-color="#ffffff"/>
<stop offset="100%" stop-color="#ff0000"/>
</linearGradient>
<rect x="0" y="0" width="400" height="400" fill="url(#redgradient)"/>
Is there a way of specifying that the colours should be blended together using a bell shaped curve? (Similar to the GDI+ LinearGradientBrush::SetBlendBellShape method)
The two rectangles below show the difference - left is without bell blend, right is with bell blend:
Or is it left to the SVG renderer to decide how the colors should be blended together?