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
I'm facing an issue rendering some SVG images which are minified in iOS15 and below, that is, some spaces are removed inside the path to reduce svg size. In those cases (minified ones) the image is rendered missing some paths. It can be checked using these two images:
Minified
Normal
As you can see the "+" is not rendered in the minified version:
As far as I've could investigate the problem occurs in the arc paths (the ones starting with a) in which this format:
a.689.689 0 0 1 0 1.377
is replaced by this one:
a.689.689 0 010 1.377
Both images are shown correctly in any SVG viewer. Anyone facing this issue too?
Thanks!
The text was updated successfully, but these errors were encountered:
I'm facing an issue rendering some SVG images which are minified in iOS15 and below, that is, some spaces are removed inside the path to reduce svg size. In those cases (minified ones) the image is rendered missing some paths. It can be checked using these two images:
As you can see the "+" is not rendered in the minified version:
As far as I've could investigate the problem occurs in the arc paths (the ones starting with a) in which this format:
a.689.689 0 0 1 0 1.377
is replaced by this one:
a.689.689 0 010 1.377
Both images are shown correctly in any SVG viewer. Anyone facing this issue too?
Thanks!
The text was updated successfully, but these errors were encountered: