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
Sometimes (most often mistakenly), CanvasRenderingContext2D API functions may be called with NaN passed as one or more of the parameters.
Although it is not mentionned in the MDN documentation as far as I could find, it turns out that calls to such functions with NaN as one of the parameters are simply ignored with no errors returned.
As such, the following code here will have three of its lines completely ignored:
<svgversion="1.1"xmlns="http://www.w3.org/2000/svg"xmlns:xlink="http://www.w3.org/1999/xlink"width="500"height="500">
<defs/>
<g>
<pathfill="none"stroke="#000000"paint-order="fill stroke markers"d=" M 50 50 L NaN NaN L NaN NaN L NaN NaN L 100 100"stroke-miterlimit="10"stroke-dasharray=""/>
</g>
</svg>
While some browsers might correctly ignore the commands that involve those NaN values, it is ultimately up to the software you are opening it with to decide what to do with it.
Inkscape, for instance, considers those NaNs as 0s, while Firefox seems to sometimes ignore them, or sometimes invalidate the whole path.
Practical use case
You might think that if there are NaNs in paths, then it's up to the programmer who has put them to fix it.
However, in practice, this very likely won't ever happen.
The reason I met this problem in the first place is when trying to export charts rendered by Chart.JS as SVG files. And even though Chart.JS is a 63.2k stars JS module, there are some draw calls that end up passing NaN to CanvasRenderingContext2D functions. And while yes I suppose an issue could be opened there, why would they bother fixing something that does not trigger any error in the first place nor cause any problem to any Chart.JS user and only affects one module that intercepts function calls that weren't meant to be intercepted in the first place?
Therefore, I think it would be more reasonable to implement a fix for this within svgcanvas, as it would make it more accurate to browsers' behaviour and would avoid opening issues for every module that uses canvas but has such calls happening in the background.
Workaround
In the meantime of this issue being resolved, you can work around the problem with one of these solutions:
Override Context.prototype functions to make them return if NaN is passed
ProxyContext.prototype functions to make them return if NaN is passed
Edit svgcanvas' code to make those functions natively return in case of NaN being passed
The text was updated successfully, but these errors were encountered:
Situation
Sometimes (most often mistakenly), CanvasRenderingContext2D API functions may be called with
NaN
passed as one or more of the parameters.Although it is not mentionned in the MDN documentation as far as I could find, it turns out that calls to such functions with NaN as one of the parameters are simply ignored with no errors returned.
As such, the following code here will have three of its lines completely ignored:
See for yourself: https://jsfiddle.net/d0bmx5nt/1/
The problem
It however seems that svgcanvas does not acknowledge this, and therefore encodes the NaN values into the exported svg.
Therefore, the following code:
Exports the following SVG file:
See for yourself: https://jsfiddle.net/pcrn6471/1/
While some browsers might correctly ignore the commands that involve those NaN values, it is ultimately up to the software you are opening it with to decide what to do with it.
Inkscape, for instance, considers those NaNs as 0s, while Firefox seems to sometimes ignore them, or sometimes invalidate the whole path.
Practical use case
You might think that if there are NaNs in paths, then it's up to the programmer who has put them to fix it.
However, in practice, this very likely won't ever happen.
The reason I met this problem in the first place is when trying to export charts rendered by Chart.JS as SVG files. And even though Chart.JS is a 63.2k stars JS module, there are some draw calls that end up passing NaN to CanvasRenderingContext2D functions. And while yes I suppose an issue could be opened there, why would they bother fixing something that does not trigger any error in the first place nor cause any problem to any Chart.JS user and only affects one module that intercepts function calls that weren't meant to be intercepted in the first place?
Therefore, I think it would be more reasonable to implement a fix for this within svgcanvas, as it would make it more accurate to browsers' behaviour and would avoid opening issues for every module that uses canvas but has such calls happening in the background.
Workaround
In the meantime of this issue being resolved, you can work around the problem with one of these solutions:
Context.prototype
functions to make them return if NaN is passedContext.prototype
functions to make them return if NaN is passedThe text was updated successfully, but these errors were encountered: