- 01 Aug, 2014 1 commit
-
-
Eric Domke authored
- Very initial support of CSS stylesheets in the SVG via including the ExCss and Fizzler libraries - Bug fixes with path rendering - Improvements to the API for loading an SVG file
-
- 24 Jul, 2014 2 commits
-
-
Dan Backes authored
-Fixes issues with colors not parsing correctly. Saving an SvgDocument resulted in RGB color values being converted to well known color names. -Compile regex statements to improve performance. -Make rendering a document threadsafe.
-
Guymestef authored
Add support for unknown svg element and non svg element: useful for not removing unknown xml tag from document when loading a file
-
- 22 Jul, 2014 1 commit
-
-
Dan Backes authored
-Fixes issues with colors not parsing correctly. Saving an SvgDocument resulted in RGB color values being converted to well known color names. -Compile regex statements to improve performance. -Make rendering a document threadsafe.
-
- 21 Jul, 2014 1 commit
-
-
Guymestef authored
Add support for unknown svg element and non svg element: useful for not removing unknown xml tag from document when loading a file
-
- 16 May, 2014 1 commit
-
-
Mark Johnson authored
- exponent support in units (IE sucks!) - inherit font-size and font-family from root element on text elements - allow empty text elements if there is a non empty TSPan
-
- 26 Feb, 2014 1 commit
-
-
Tibor Peluch authored
-
- 12 Nov, 2013 1 commit
-
-
Tebjan Halm authored
-
- 11 Jul, 2013 2 commits
-
-
Tebjan Halm authored
-
Tebjan Halm authored
-
- 19 Mar, 2012 1 commit
-
-
G Money authored
- Changes to get texts displaying bold / normal weight - Changes to get textspans work correctly - Made (semi-hardcoded) document metadata section - allow reading and regurgitating metdata tag from an original source document - Included image - Modified paths to allow for scientific notation - Included ability to have markers for path ends (arrow ends etc)
-
- 04 Mar, 2010 1 commit
-
-
davescriven authored
-
- 04 Jan, 2010 1 commit
-
-
ddpruitt authored
-
- 24 Aug, 2009 1 commit
-
-
ddpruitt authored
Removed some compiler warnings.
-
- 26 Dec, 2008 1 commit
-
-
davescriven authored
- Fixed a bug that caused <text/> elements to be parsed incorrectly, leading to exceptions within the document.
-
- 21 Dec, 2008 1 commit
-
-
davescriven authored
- Fixed #7986: public static SvgDocument Open(XmlDocument document) returns null: Implemented the proposed solution - Added more XML API comments. - Removed SvgVisualElementEvents.cs class - this was not used and not likely to be used
-
- 20 Dec, 2008 1 commit
-
-
davescriven authored
- Refactored SvgElementFactory to use the new SvgElementAttribute to get available elements.
-
- 18 Oct, 2008 1 commit
-
-
davescriven authored
- Fixed "#7522 support rotate(angle,cx,cy)". Added new properties and a new constructor overload to SvgRotate in order to support the optional parameters. - Removed redundant code from SvgElementFactory.
-
- 17 Jun, 2008 1 commit
-
-
davescriven authored
- Fixed #6324: SvgElement.PushTransforms and ViewBox - not necessarily related to ViewBox but every element was 'resetting' the current graphics transform if the element contained it's own transform. This was a very small fix for a large problem (SvgElement.PushTransforms Matrix transformMatrix = new Matrix(); changed to Matrix transformMatrix = renderer.Transform; in order to inherit the current transform.) - Fixed #6344: Parsing document incorrectly parents elements when it encounters empty nodes which are in a different namespace. Empty nodes are now ignored and current nodes are closed as required. We'll see how this fix goes. - Fixed #6381: Units in inches are incorrectly parsed as millimeters - problem was caused by some copy/paste work. - Graphics has been replaced by SvgRenderer. This is essentially a wrapper around graphics but will allow custom svg related properties in the future when needed. - Removed ISvgRenderer: A concrete implementation is suitable. - SvgElement.ElementName has been changed to non-virtual and is set by the parser instead of the developer having to specify it when developing the class. - Added more XML API documentation.
-
- 24 Mar, 2008 1 commit
-
-
davescriven authored
- Fixed support for text-anchor="middle" and text-anchor="end" for <text/> elements. - Added more XML API documentation - Added x attribute and y attribute support to <use/> elements.
-
- 07 Mar, 2008 1 commit
-
-
davescriven authored
-