Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Result attributes removed from filter #122

Closed
zwaldowski opened this issue Jun 24, 2013 · 0 comments
Closed

Result attributes removed from filter #122

zwaldowski opened this issue Jun 24, 2013 · 0 comments
Assignees
Labels

Comments

@zwaldowski
Copy link

I use a drop shadow filter:

<filter id="drop-shadow">
    <feGaussianBlur stdDeviation="8" result="a"/>
    <feFlood flood-color="#000" flood-opacity=".75" result="b"/>
    <feComposite operator="in" in2="a" in="b"/>
</filter>

SVGO mangles it:

<filter id="a">
    <feGaussianBlur stdDeviation="8"/>
    <feFlood flood-color="#000" flood-opacity=".75"/>
    <feComposite operator="in" in2="a" in="b"/>
</filter>

If there's any way I can make SVGO's version work, I'd love to hear it. Awesome work, going around and shaving large chunks off my web SVGs.

@ghost ghost assigned deepsweet Jun 24, 2013
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants