-
-
Notifications
You must be signed in to change notification settings - Fork 22
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
Performance issue #44
Comments
In what exactly? |
All of them, like |
Yea transforms are made by a DOMMatrix shim to allow 3D projections, where svgpath uses a 2D only model, if we were to use that, the performance would be within margin of error. But as for the pathBBox that totally depends on many things, certainly something to look at in the future. Reminding myself what's what, I implemented a unified segment factory for each path command and that's not the most efficient way to find the pathBBox. Thanks again for bringing these up. |
I'm now working on a performance improvement for As for the transform situation it won't change, however with your use case where you combine transform and bbox the performance will be significantly improved. Should I let you know when I have the new |
Yo @LitoMore I've used your HUGE svg file, added some fixes and I've compiled a set of benchmarks, have a look: I've analyzed the performance issues and made some improvements thanks to you, so I'm giving you a few notes:
Have a good one! |
Yo @LitoMore, disregard my previous message, watch this: I've implemented a series of changes that drastically improve both performance and accuracy of A, C and Q segments parsing/processing. |
@LitoMore Yes, performance would be on par with SvgPath but is that worth it? |
You could add a new option to the constructor. Like The time it takes to process the image is so valuable that I don't mind if it fails because the browser won't throw an exception for a failed SVG image. The situations where I need to constantly check it are so rare that it's not worth it to keep running the check all the time. |
Thanks for the suggestion, I'll come back to it as soon as I can. |
The type safety is designed to eliminate the possibility of a crash, not just to show the dev some code marked with red in the editor. It might be a case of over checking, but for instance you want to transform a I'm thinking of a way to make the DX better as well, not just improve performance. I'm thinking of two main changes:
Let's say we do the parsing and preparation faster, but on that 11650 segments path, transform will still take some ms, as explained above, but I think we can give this a try. |
Hey @LitoMore how do you like this? (Haven't committed yet) Transform is still slower, but it does so much more it doesn't matter really for just a couple of milliseconds IMO. What do you think? Would you like to play? |
OK, I will try it out tomorrow. |
* removed 'auto' option for options.round, the reason is the high duration of getting the path bounding box at initialization; * the default `origin` option value is no longer 'auto' but [0, 0, 0]; * conversion tools no longer make use of checks (EG: isPathArray) to remove bottlenecks at constructor initialization; * fixed issue with `pathToRelative` where additional MoveTo segments didn't get converted to relative #40 ; * fixed a small issue with `pathToAbsolute` with additional relative `m` segments not properly processed; * updated splitPath to work with relative arrays * removed `pathFactory` (an elegant solution but not very fast) in favor of the below mentioned; * removed `replaceArc` it's no longer needed; * added new tools for each segment type for calculating length, and bbox as well as finding a point at length; * fixed a small issue with Arc segments where getting point at given length was also finding points inside the shape and not in stroke; * further performance improvements #44; * updated tests; * updated docs / demo: added path total length, point at length and bbox; * updated dependencies.
I just played the code on master branch and the 2.1.0. Here is my playground: {
"type": "module",
"description": "",
"dependencies": {
"svg-path-commander-master": "file:///Users/litomore/Git/svg-path-commander",
"simple-icons": "13.14.0",
"svg-path-commander": "2.1.0"
}
} import * as si from "simple-icons";
import SVGPathCommander from "svg-path-commander";
import Commander from "svg-path-commander-master";
const transform = {
translate: 15, // X axis translation
rotate: 15, // Z axis rotation
scale: 0.75, // uniform scale on X, Y, Z axis
skew: 15, // skew 15deg on the X axis
origin: [15, 0], // if not specified, it will use the default origin value [0, 0]
};
const run = (CMD) => {
const start = performance.now();
for (const icon of Object.values(si)) {
try {
const cmd = new CMD(icon.path);
const bbox = cmd.getBBox();
cmd.transform(transform).toString();
} catch (error) {
console.log(icon.title, error.toString());
}
}
const end = performance.now();
console.log(end - start, "ms");
};
console.log("[email protected]");
run(SVGPathCommander);
console.log();
console.log("svg-path-commander@master");
run(Commander); It returns:
Let's ignore those path errors. Whatever, it's actually much faster now. |
@LitoMore |
The v2.1.1 work as good as the master build. BTW, I used the SVG Path Visualizer (boulanger) to inspect the path values. I'm not a path pro. But the value looks fine. |
Thank you for your contribution. Yes the values are correct, I checked with the older 2.0.x version and a 100k resolution (every segment length calculated at 100.000 sample size). In the next couple of days I'm going to work on other utils to improve performance a bit further, and just to give you a hint on what changed:
Let me know if you encounter more issues, I will provide an update on the progress. |
@LitoMore I've optimized other tools like Ttyl |
Yo @LitoMore I'm going to commit a new version as soon as i finish some tooling updates. Basically everything has been reworked / optimized for faster execution. I can't strip any more code just to get the bbox faster without breaking other tools. There's more to the performance because of Arc segments, if your shape didn't have Arc segments or were converted to CubicBezier, the string would get a little bigger, but the processing would be faster overall. I think this really good now. What do you think? UPDATE: v2.1.2 is out there now. |
Hey @LitoMore, please check v2.1.3 Now both transform and bbox under 30ms. Please note the Date().getTime() is kinda wacky. |
This library is relatively slow compared to
svgpath
and svg-path-bbox.You can use these SVG images below to test the performance:
The text was updated successfully, but these errors were encountered: