You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When applying this blur technique on picture I see some strange 'color cascade':
When I create blurred svg image using this technique, it's perfect. Why?
I think, it's because 2nd method blurs image proportionally in opposite to 1th method (your one) which blurs image depending on screensize.
Blur the image proportionally and then style it to element background like this
background: #ccc url('img.jpg') repeat fixed center center / cover;
-- Update:
It's because <filter> miss color-interpolation-filters tag set to sRGB: <filter id="blur" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
My general advice regarding also issues #6#5 sounds "do svg code like this":
When applying this blur technique on picture I see some strange 'color cascade':
When I create blurred svg image using this technique, it's perfect. Why?
I think, it's because 2nd method blurs image proportionally in opposite to 1th method (your one) which blurs image depending on screensize.
Blur the image proportionally and then style it to element background like this
background: #ccc url('img.jpg') repeat fixed center center / cover;
--
Update:
It's because
<filter>
misscolor-interpolation-filters
tag set tosRGB
:<filter id="blur" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
My general advice regarding also issues #6 #5 sounds "do svg code like this":
source + read this article
The text was updated successfully, but these errors were encountered: