Skip to content

Instantly share code, notes, and snippets.

@esteluk
Created May 14, 2012 00:51
Show Gist options
  • Save esteluk/2690987 to your computer and use it in GitHub Desktop.
Save esteluk/2690987 to your computer and use it in GitHub Desktop.
Greyscale layer for an image
Display the source blob
Display the rendered blob
Raw
<svg xmlns="http://www.w3.org/2000/svg">
<filter id="grayscale">
<feColorMatrix type="matrix" values="0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0"/>
</filter>
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment