- 18 Dec, 2018 1 commit
-
-
H1Gdev authored
- Fix: adjustment is wrong in lengthAdjust='spacingAndGlyphs'. - Add test images.
-
- 19 Mar, 2017 1 commit
-
-
mrbean-bremen authored
- use GetInheritedAttribute() to correctly handle "Inherit" value - fixes inheritance of these attributes from groups - fixes alignment in types-basic-01-f.svg test
-
- 28 Dec, 2016 1 commit
-
-
Tebjan Halm authored
-
- 18 Nov, 2016 1 commit
-
-
sovietmagic authored
SvgTextBase Text property setter resets Node collection to have single content node with provided text.
-
- 20 Dec, 2015 1 commit
-
-
HeinrichAD authored
Fix: Now the application make sure to set back the old culture even an error occurred. SvgColourConverter.ConvertFrom SvgPathBuilder.ConvertTo SvgDocument.Write SvgExtentions.GetXML Add: Attribute: "shape-rendering" Change: - Many other properties were unknowingly overloaded. I changed them to override. - Some methods or structures need the [CLSCompliant(false)] Attribute. For example the Enums.TryParse extension. This extension has the where condition IConvertible. IConvertible is [CLSCompliant(false)] and that the reason why it is correct to mark the Enums.TryParse extension also as [CLSCompliant(false)]. - Property "float Opacity" in SvgElement was unknowingly overloaded in SvgGradientStop as string [stop-opacity]. In the end this property was only used as float. I changed the SvgGradientStop.Opacity property from string to float and to override.
-
- 18 Sep, 2015 1 commit
-
-
ubbn authored
-
- 03 Apr, 2015 3 commits
-
-
Josh McCullough authored
SvgDocument as Write(XmlTextWriter); allowed elements to decide whether or not they should be written. E.g. text elements should not be written unless they have children.
-
Josh McCullough authored
Fixed many attribute enums. Now they will 1) output the proper case, 2) only output if non-null and non-default, 3) include more documentation, 4) are marked as Flags where appropriate.
-
Josh McCullough authored
-
- 23 Mar, 2015 1 commit
-
-
Tebjan Halm authored
-
- 11 Feb, 2015 2 commits
-
-
Josh McCullough authored
SvgDocument as Write(XmlTextWriter); allowed elements to decide whether or not they should be written. E.g. text elements should not be written unless they have children.
-
Josh McCullough authored
Fixed many attribute enums. Now they will 1) output the proper case, 2) only output if non-null and non-default, 3) include more documentation, 4) are marked as Flags where appropriate.
-
- 13 Oct, 2014 1 commit
-
-
Eric Domke authored
More serialization bug fixes and better fallback for font definition problems.
-
- 26 Sep, 2014 1 commit
-
-
Tebjan Halm authored
-
- 24 Sep, 2014 1 commit
-
-
Dan Backes authored
- Because querying the Bounds property of an ISvgBoundable or SvgVisualElement is expensive, we introduced an ImmutableBoundable that is used by the SvgRenderer. This class stores the bounds of the supplied ISvgBoundable so that multiple queries for the bounds do not hamper performance when rendering. - Converted the Bounds property on ISvgBoundable and SvgVisualElement to a CalculateBounds method to indicate that it is an expensive operation that returns a new value each time it is called. - Removed redundant ISvgBoundable Location and Size properties. - Fixed a bug in SvgFragment.Path property by converting it to a method that indicates it returns a new GraphicsPath instance when called and by disposing of that instance in CalculateBounds. There are many more instances of GraphicsPath not being disposed in the code base but we did not address that here.
-
- 23 Sep, 2014 3 commits
-
-
Ritch Melton authored
-
Ritch Melton authored
-
Ritch Melton authored
-
- 15 Sep, 2014 3 commits
-
-
Ritch Melton authored
-
Ritch Melton authored
-
Ritch Melton authored
-
- 25 Aug, 2014 1 commit
-
-
Eric Domke authored
- Improving rendering of SVG images - Allow markers on lines, polygons, and polylines - Implement different line joins and line caps - Improve CSS handling
-
- 18 Aug, 2014 1 commit
-
-
Eric Domke authored
- Fixing path parsing algorithm to deal with nuanced arc cases and hopefully improve performance - Attempts at better memory management - Working toward getting symbols to render correctly
-
- 17 Aug, 2014 1 commit
-
-
Eric Domke authored
- Extraction interface for SvgRenderer - Initial support for Text on a Path - Initial support for Svg Fonts - Support for symbol element - Minor bug fixes with image pattern rendering - Additional support for Text whitespace modes
-
- 10 Aug, 2014 1 commit
-
-
Eric Domke authored
- Support of generic fonts (serif, sans-serif, monospace) - Initial support of filters - Fixes to gradient rendering
-
- 04 Aug, 2014 2 commits
-
-
Eric Domke authored
- Remove WPF dependency - Fix compilation error after merge - Add support for underline and strike through - Fix whitespace handling with text rendering
-
Eric Domke authored
- Adding W3C test cases and a test fixture - Fixed support for CSS stylesheets (particularly when class names are referenced) - Refactoring unit calculations so that percentages and fractions calculate more accurately - SvgImage: - Support PreserveAspectRatio attribute - Support for referencing svg images - Refactored text rendering to use the AttributeCollection inheritance scheme - Initial attempt at 'ex' unit support - Added support for system color names - Changed parsing of entities to support XML entities - Supporting loading of a svg document directly from a XmlDocument with requiring serializing the document as a string first. - ...
-
- 31 Jul, 2014 1 commit
-
-
Eric Domke authored
-
- 30 Jul, 2014 1 commit
-
-
Eric Domke authored
-
- 26 Jul, 2014 1 commit
-
-
Eric Domke authored
- Begin allowing character positioning within a text element - Start fixing bugs with linear gradients
-
- 25 Jul, 2014 2 commits
-
-
Eric Domke authored
- Support more font styles - Fix problems with parsing 'em' svg units introduced by trying to parse 2e-5 double formats - Move font properties to SvgVisualElement class as grouping elements can also contain them - Properly inherit font properties via the parent list - Properly handle tspan offsets - Support for .Net 3.5
-
Eric Domke authored
-
- 24 Jul, 2014 2 commits
-
-
Eric Domke authored
- Implemented .Net 3.5 support mostly by removing ISvgEventCaller functionality in .Net 3.5 build - Added ability to parse colors such as rgb(#%, #%, #%) - Fix issues with calculating the next coordinate after a close figure and a relative move - Allow the std. deviation in a gaussian blur to be a float. - Allow "none" for a unit collection - Allow gradients to reference other gradients defined later in the SVG - Fix href attribute bug on the SVG use element - Adding a descendants convenience methods (similar to the Xml to Linq API) - Removed non-functional property from the SvgDescription class to encourage use of the Content property instead
-
Tebjan Halm authored
-
- 02 Jul, 2014 1 commit
-
-
Tebjan Halm authored
-
- 30 Jun, 2014 1 commit
-
-
Eric Domke authored
- Fix issues with calculating the next coordinate after a close figure and a relative move - Allow the std. deviation in a gaussian blur to be a float. - Allow "none" for a unit collection - Allow a marker to scale with either the stroke width or the use a custom coordinate space - Allow gradients to reference other gradients defined later in the SVG - Respect the font and fill styles of TextSpan elements. Current support is still partial. - Fix href attribute bug on the SVG use element
-
- 27 Jun, 2014 1 commit
-
-
Eric Domke authored
- Implemented .Net 3.5 support mostly by removing ISvgEventCaller functionality in .Net 3.5 build - Added ability to parse orient="auto" - Added ability to parse colors such as rgb(#%, #%, #%) - Fixed marker rendering implementation
-
- 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
-
- 22 Apr, 2014 2 commits
-
-
HarkDev authored
Some programs (like InkScape) use single quotes for the font-family. I've added the single quote character, to the trim.
-
Tobias Oort authored
Added support for dx and dy properties for text. A bit of plumbing was already in place so I completed that. http://www.w3.org/TR/SVG11/text.html#TextElementDXAttribute http://www.w3.org/TR/SVG11/text.html#TextElementDYAttribute
-