1. 21 Jan, 2019 1 commit
  2. 19 Jan, 2019 1 commit
  3. 15 Jan, 2019 1 commit
  4. 13 Jan, 2019 1 commit
  5. 06 Jan, 2019 1 commit
  6. 02 Jan, 2019 1 commit
  7. 01 Jan, 2019 1 commit
  8. 30 Dec, 2018 1 commit
  9. 28 Dec, 2018 1 commit
  10. 25 Dec, 2018 1 commit
  11. 24 Dec, 2018 1 commit
  12. 22 Dec, 2018 1 commit
  13. 18 Dec, 2018 2 commits
  14. 17 Dec, 2018 1 commit
  15. 28 Feb, 2017 1 commit
  16. 25 Feb, 2017 1 commit
  17. 18 Nov, 2016 1 commit
  18. 14 Nov, 2016 1 commit
  19. 14 Sep, 2016 1 commit
  20. 22 May, 2016 1 commit
  21. 19 Apr, 2016 1 commit
    • AKH's avatar
      Issue 225 - Image with large embedded image fails to render · a0da74b0
      AKH authored
      - Changed SvgImage.Href property from Uri type to String to avoid UriFormatException if Uri contains too much data
      - Changed GetImage to receive a string instead of Uri object.
        - Created a temp Uri object in method with substring of allowed length and using this to determine Uri characteristics
      a0da74b0
  22. 04 Jan, 2016 1 commit
  23. 03 Jan, 2016 1 commit
    • HeinrichAD's avatar
      Maker rendering does not get right position. · 1a003b2d
      HeinrichAD authored
      As long as the functions AdjustForViewBoxWidth and
      AdjustForViewBoxHeight are not fully developed pay attention that the
      ViewBox width and height will not mismatch the positions of the marker
      element then one of them are zero.
      
      This changes are based on Issue #212 from mater.
      
      Add: Quick solution to avoid  ViewBox width or height zero calculation.
      Add: UnitTests
      1a003b2d
  24. 28 Dec, 2015 1 commit
  25. 27 Dec, 2015 3 commits
  26. 20 Dec, 2015 1 commit
    • HeinrichAD's avatar
      Add: shape-rendering; Fix: CurrentCulture · 7894ea9e
      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.
      7894ea9e
  27. 17 Sep, 2015 1 commit
  28. 26 Aug, 2015 1 commit
    • Gertjan van Heertum's avatar
      Fixed problems when running in multiple threads. The use of a static matrix... · 3838e721
      Gertjan van Heertum authored
      Fixed problems when running in multiple threads. The use of a static matrix and the use of StringFormat.GenericTypographic seemed to cause problems when used in multi-threading. This is resolved by making the matrix non static and use a copy of the StringFormat.
      
      Also created a new exception for memory overflows. When using multithreading to render a large amount of big images the bitmap creation can fail (due to memory allocation) throwing an error. This is now caught and a specific exception is thrown.
      3838e721
  29. 20 Aug, 2015 2 commits
  30. 04 Aug, 2014 1 commit
    • Eric Domke's avatar
      Refactoring while working through W3C tests · d5c659a5
      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.
      - ...
      d5c659a5