Blazor.SVGEditor
Blazor.SVGEditor copied to clipboard
A basic SVG editor written in Blazor.
I have a need to annotate an image and I was thinking that this project would be a great start. is it possible to add an image and then make...
When using the SVGEditor code in a server-side app and editing the svg as text in **textarea** "System.InvalidOperationException: The current thread is not associated with the Dispatcher" After reading [this...
It would be awesome to be able to call some function on the `SVGEditor` taking a list of shapes that would zoom and translate the viewport of the editor so...
Currently, we recalculate the positions of lines, markers, and the shapes themselves even when they are outside the bounds of the viewport. To minimize this problem we should use the...
It would be nice if we could rotate shapes. We can do this using CSS transforms but we should make sure to scope this feature as it can get rather...
It seems sensible that it should be possible to add some background graphics/shapes to either serve as context for what is being edited or to give an idea of the...
The `stroke-dasharray` attribute has a lot of possibilities for natural mapping in some control. Right now, we simply take a free-text input that is inserted in the shape. I imagine...
Currently, when animating a Stroke Dash Offset, the value only updates once the user de-selects the input, which isn't practical.
I noticed that support for the filter element is not added in the code. Is there a plan to do it in the future?
Currently, when `SnapToInteger` is activated, we use casts to ints in many places to ensure whole numbers, but it would give a smoother experience if we used `Math.Round` instead. So,...