123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Diagnostics;
- using System.Drawing;
- using System.Drawing.Drawing2D;
- using System.Drawing.Text;
- using System.IO;
- using System.Text;
- using System.Xml;
- using System.Linq;
- using ExCSS;
- using Svg.Css;
- using System.Threading;
- using System.Globalization;
- using Svg.Exceptions;
- #pragma warning disable
- namespace Svg
- {
- /// <summary>
- /// The class used to create and load SVG documents.
- /// </summary>
- public class SvgDocument : SvgFragment, ITypeDescriptorContext
- {
- public static readonly int PointsPerInch = 96;
- private SvgElementIdManager _idManager;
- private Dictionary<string, IEnumerable<SvgFontFace>> _fontDefns = null;
- internal Dictionary<string, IEnumerable<SvgFontFace>> FontDefns()
- {
- if (_fontDefns == null)
- {
- _fontDefns = (from f in Descendants().OfType<SvgFontFace>()
- group f by f.FontFamily into family
- select family).ToDictionary(f => f.Key, f => (IEnumerable<SvgFontFace>)f);
- }
- return _fontDefns;
- }
- /// <summary>
- /// Initializes a new instance of the <see cref="SvgDocument"/> class.
- /// </summary>
- public SvgDocument()
- {
- Ppi = PointsPerInch;
- }
- public Uri BaseUri { get; set; }
- /// <summary>
- /// Gets an <see cref="SvgElementIdManager"/> for this document.
- /// </summary>
- protected internal virtual SvgElementIdManager IdManager
- {
- get
- {
- if (_idManager == null)
- {
- _idManager = new SvgElementIdManager(this);
- }
- return _idManager;
- }
- }
- /// <summary>
- /// Overwrites the current IdManager with a custom implementation.
- /// Be careful with this: If elements have been inserted into the document before,
- /// you have to take care that the new IdManager also knows of them.
- /// </summary>
- /// <param name="manager"></param>
- public void OverwriteIdManager(SvgElementIdManager manager)
- {
- _idManager = manager;
- }
- /// <summary>
- /// Gets or sets the Pixels Per Inch of the rendered image.
- /// </summary>
- public int Ppi { get; set; }
- /// <summary>
- /// Gets or sets an external Cascading Style Sheet (CSS)
- /// </summary>
- public string ExternalCSSHref { get; set; }
- #region ITypeDescriptorContext Members
- IContainer ITypeDescriptorContext.Container
- {
- get { throw new NotImplementedException(); }
- }
- object ITypeDescriptorContext.Instance
- {
- get { return this; }
- }
- void ITypeDescriptorContext.OnComponentChanged()
- {
- throw new NotImplementedException();
- }
- bool ITypeDescriptorContext.OnComponentChanging()
- {
- throw new NotImplementedException();
- }
- PropertyDescriptor ITypeDescriptorContext.PropertyDescriptor
- {
- get { throw new NotImplementedException(); }
- }
- object IServiceProvider.GetService(Type serviceType)
- {
- throw new NotImplementedException();
- }
- #endregion
- /// <summary>
- /// Retrieves the <see cref="SvgElement"/> with the specified ID.
- /// </summary>
- /// <param name="id">A <see cref="string"/> containing the ID of the element to find.</param>
- /// <returns>An <see cref="SvgElement"/> of one exists with the specified ID; otherwise false.</returns>
- public virtual SvgElement GetElementById(string id)
- {
- return IdManager.GetElementById(id);
- }
- /// <summary>
- /// Retrieves the <see cref="SvgElement"/> with the specified ID.
- /// </summary>
- /// <param name="id">A <see cref="string"/> containing the ID of the element to find.</param>
- /// <returns>An <see cref="SvgElement"/> of one exists with the specified ID; otherwise false.</returns>
- public virtual TSvgElement GetElementById<TSvgElement>(string id) where TSvgElement : SvgElement
- {
- return (this.GetElementById(id) as TSvgElement);
- }
- /// <summary>
- /// Opens the document at the specified path and loads the SVG contents.
- /// </summary>
- /// <param name="path">A <see cref="string"/> containing the path of the file to open.</param>
- /// <returns>An <see cref="SvgDocument"/> with the contents loaded.</returns>
- /// <exception cref="FileNotFoundException">The document at the specified <paramref name="path"/> cannot be found.</exception>
- public static SvgDocument Open(string path)
- {
- return Open<SvgDocument>(path, null);
- }
- /// <summary>
- /// Opens the document at the specified path and loads the SVG contents.
- /// </summary>
- /// <param name="path">A <see cref="string"/> containing the path of the file to open.</param>
- /// <returns>An <see cref="SvgDocument"/> with the contents loaded.</returns>
- /// <exception cref="FileNotFoundException">The document at the specified <paramref name="path"/> cannot be found.</exception>
- public static T Open<T>(string path) where T : SvgDocument, new()
- {
- return Open<T>(path, null);
- }
- /// <summary>
- /// Opens the document at the specified path and loads the SVG contents.
- /// </summary>
- /// <param name="path">A <see cref="string"/> containing the path of the file to open.</param>
- /// <param name="entities">A dictionary of custom entity definitions to be used when resolving XML entities within the document.</param>
- /// <returns>An <see cref="SvgDocument"/> with the contents loaded.</returns>
- /// <exception cref="FileNotFoundException">The document at the specified <paramref name="path"/> cannot be found.</exception>
- public static T Open<T>(string path, Dictionary<string, string> entities) where T : SvgDocument, new()
- {
- if (string.IsNullOrEmpty(path))
- {
- throw new ArgumentNullException("path");
- }
- if (!File.Exists(path))
- {
- throw new FileNotFoundException("The specified document cannot be found.", path);
- }
- using (var stream = File.OpenRead(path))
- {
- var doc = Open<T>(stream, entities);
- doc.BaseUri = new Uri(System.IO.Path.GetFullPath(path));
- return doc;
- }
- }
- /// <summary>
- /// Attempts to open an SVG document from the specified <see cref="Stream"/>.
- /// </summary>
- /// <param name="stream">The <see cref="Stream"/> containing the SVG document to open.</param>
- public static T Open<T>(Stream stream) where T : SvgDocument, new()
- {
- return Open<T>(stream, null);
- }
- /// <summary>
- /// Attempts to create an SVG document from the specified string data.
- /// </summary>
- /// <param name="svg">The SVG data.</param>
- public static T FromSvg<T>(string svg) where T : SvgDocument, new()
- {
- if (string.IsNullOrEmpty(svg))
- {
- throw new ArgumentNullException("svg");
- }
- using (var strReader = new System.IO.StringReader(svg))
- {
- var reader = new SvgTextReader(strReader, null);
- reader.XmlResolver = new SvgDtdResolver();
- reader.WhitespaceHandling = WhitespaceHandling.None;
- return Open<T>(reader);
- }
- }
- /// <summary>
- /// Opens an SVG document from the specified <see cref="Stream"/> and adds the specified entities.
- /// </summary>
- /// <param name="stream">The <see cref="Stream"/> containing the SVG document to open.</param>
- /// <param name="entities">Custom entity definitions.</param>
- /// <exception cref="ArgumentNullException">The <paramref name="stream"/> parameter cannot be <c>null</c>.</exception>
- public static T Open<T>(Stream stream, Dictionary<string, string> entities) where T : SvgDocument, new()
- {
- if (stream == null)
- {
- throw new ArgumentNullException("stream");
- }
- // Don't close the stream via a dispose: that is the client's job.
- var reader = new SvgTextReader(stream, entities);
- reader.XmlResolver = new SvgDtdResolver();
- reader.WhitespaceHandling = WhitespaceHandling.None;
- return Open<T>(reader);
- }
- private static T Open<T>(XmlReader reader) where T : SvgDocument, new()
- {
- var elementStack = new Stack<SvgElement>();
- bool elementEmpty;
- SvgElement element = null;
- SvgElement parent;
- T svgDocument = null;
- var elementFactory = new SvgElementFactory();
- var styles = new List<ISvgNode>();
- while (reader.Read())
- {
- try
- {
- switch (reader.NodeType)
- {
- case XmlNodeType.Element:
- // Does this element have a value or children
- // (Must do this check here before we progress to another node)
- elementEmpty = reader.IsEmptyElement;
- // Create element
- if (elementStack.Count > 0)
- {
- element = elementFactory.CreateElement(reader, svgDocument);
- }
- else
- {
- svgDocument = elementFactory.CreateDocument<T>(reader);
- element = svgDocument;
- }
- // Add to the parents children
- if (elementStack.Count > 0)
- {
- parent = elementStack.Peek();
- if (parent != null && element != null)
- {
- parent.Children.Add(element);
- parent.Nodes.Add(element);
- }
- }
- // Push element into stack
- elementStack.Push(element);
- // Need to process if the element is empty
- if (elementEmpty)
- {
- goto case XmlNodeType.EndElement;
- }
- break;
- case XmlNodeType.EndElement:
- // Pop the element out of the stack
- element = elementStack.Pop();
- if (element.Nodes.OfType<SvgContentNode>().Any())
- {
- element.Content = (from e in element.Nodes select e.Content).Aggregate((p, c) => p + c);
- }
- else
- {
- element.Nodes.Clear(); // No sense wasting the space where it isn't needed
- }
- var unknown = element as SvgUnknownElement;
- if (unknown != null && unknown.ElementName == "style")
- {
- styles.Add(unknown);
- }
- break;
- case XmlNodeType.CDATA:
- case XmlNodeType.Text:
- element = elementStack.Peek();
- element.Nodes.Add(new SvgContentNode() { Content = reader.Value });
- break;
- case XmlNodeType.EntityReference:
- reader.ResolveEntity();
- element = elementStack.Peek();
- element.Nodes.Add(new SvgContentNode() { Content = reader.Value });
- break;
- }
- }
- catch (Exception exc)
- {
- Trace.TraceError(exc.Message);
- }
- }
- if (styles.Any())
- {
- var cssTotal = styles.Select((s) => s.Content).Aggregate((p, c) => p + Environment.NewLine + c);
- var cssParser = new Parser();
- var sheet = cssParser.Parse(cssTotal);
- AggregateSelectorList aggList;
- IEnumerable<BaseSelector> selectors;
- IEnumerable<SvgElement> elemsToStyle;
- foreach (var rule in sheet.StyleRules)
- {
- aggList = rule.Selector as AggregateSelectorList;
- if (aggList != null && aggList.Delimiter == ",")
- {
- selectors = aggList;
- }
- else
- {
- selectors = Enumerable.Repeat(rule.Selector, 1);
- }
- foreach (var selector in selectors)
- {
- elemsToStyle = svgDocument.QuerySelectorAll(rule.Selector.ToString(), elementFactory);
- foreach (var elem in elemsToStyle)
- {
- foreach (var decl in rule.Declarations)
- {
- elem.AddStyle(decl.Name, decl.Term.ToString(), rule.Selector.GetSpecificity());
- }
- }
- }
- }
- }
- if (svgDocument != null) FlushStyles(svgDocument);
- return svgDocument;
- }
- private static void FlushStyles(SvgElement elem)
- {
- elem.FlushStyles();
- foreach (var child in elem.Children)
- {
- FlushStyles(child);
- }
- }
- /// <summary>
- /// Opens an SVG document from the specified <see cref="XmlDocument"/>.
- /// </summary>
- /// <param name="document">The <see cref="XmlDocument"/> containing the SVG document XML.</param>
- /// <exception cref="ArgumentNullException">The <paramref name="document"/> parameter cannot be <c>null</c>.</exception>
- public static SvgDocument Open(XmlDocument document)
- {
- if (document == null)
- {
- throw new ArgumentNullException("document");
- }
- var reader = new SvgNodeReader(document.DocumentElement, null);
- return Open<SvgDocument>(reader);
- }
- public static Bitmap OpenAsBitmap(string path)
- {
- return null;
- }
- public static Bitmap OpenAsBitmap(XmlDocument document)
- {
- return null;
- }
- /// <summary>
- /// Renders the <see cref="SvgDocument"/> to the specified <see cref="ISvgRenderer"/>.
- /// </summary>
- /// <param name="renderer">The <see cref="ISvgRenderer"/> to render the document with.</param>
- /// <exception cref="ArgumentNullException">The <paramref name="renderer"/> parameter cannot be <c>null</c>.</exception>
- public void Draw(ISvgRenderer renderer)
- {
- if (renderer == null)
- {
- throw new ArgumentNullException("renderer");
- }
- renderer.SetBoundable(this);
- this.Render(renderer);
- }
- /// <summary>
- /// Renders the <see cref="SvgDocument"/> to the specified <see cref="Graphics"/>.
- /// </summary>
- /// <param name="graphics">The <see cref="Graphics"/> to be rendered to.</param>
- /// <exception cref="ArgumentNullException">The <paramref name="graphics"/> parameter cannot be <c>null</c>.</exception>
- public void Draw(Graphics graphics)
- {
- if (graphics == null)
- {
- throw new ArgumentNullException("graphics");
- }
- var renderer = SvgRenderer.FromGraphics(graphics);
- renderer.SetBoundable(this);
- this.Render(renderer);
- }
- /// <summary>
- /// Renders the <see cref="SvgDocument"/> and returns the image as a <see cref="Bitmap"/>.
- /// </summary>
- /// <returns>A <see cref="Bitmap"/> containing the rendered document.</returns>
- public virtual Bitmap Draw()
- {
- //Trace.TraceInformation("Begin Render");
- var size = GetDimensions();
- Bitmap bitmap = null;
- try
- {
- bitmap = new Bitmap((int)Math.Round(size.Width), (int)Math.Round(size.Height));
- }
- catch (ArgumentException e)
- {
- //When processing too many files at one the system can run out of memory
- throw new SvgMemoryException("Cannot process SVG file, cannot allocate the required memory", e);
- }
- // bitmap.SetResolution(300, 300);
- try
- {
- Draw(bitmap);
- }
- catch
- {
- bitmap.Dispose();
- throw;
- }
- //Trace.TraceInformation("End Render");
- return bitmap;
- }
- /// <summary>
- /// Renders the <see cref="SvgDocument"/> into a given Bitmap <see cref="Bitmap"/>.
- /// </summary>
- public virtual void Draw(Bitmap bitmap)
- {
- //Trace.TraceInformation("Begin Render");
- try
- {
- using (var renderer = SvgRenderer.FromImage(bitmap))
- {
- renderer.SetBoundable(new GenericBoundable(0, 0, bitmap.Width, bitmap.Height));
- //EO, 2014-12-05: Requested to ensure proper zooming out (reduce size). Otherwise it clip the image.
- this.Overflow = SvgOverflow.Auto;
- this.Render(renderer);
- }
- }
- catch
- {
- throw;
- }
- //Trace.TraceInformation("End Render");
- }
- /// <summary>
- /// Renders the <see cref="SvgDocument"/> in given size and returns the image as a <see cref="Bitmap"/>.
- /// </summary>
- /// <returns>A <see cref="Bitmap"/> containing the rendered document.</returns>
- public virtual Bitmap Draw(int rasterWidth, int rasterHeight)
- {
- var size = GetDimensions();
- RasterizeDimensions(ref size, rasterWidth, rasterHeight);
- if (size.Width == 0 || size.Height == 0)
- return null;
- var bitmap = new Bitmap((int)Math.Round(size.Width), (int)Math.Round(size.Height));
- try
- {
- Draw(bitmap);
- }
- catch
- {
- bitmap.Dispose();
- throw;
- }
- //Trace.TraceInformation("End Render");
- return bitmap;
- }
- /// <summary>
- /// If both or one of raster height and width is not given (0), calculate that missing value from original SVG size
- /// while keeping original SVG size ratio
- /// </summary>
- /// <param name="size"></param>
- /// <param name="rasterWidth"></param>
- /// <param name="rasterHeight"></param>
- public virtual void RasterizeDimensions(ref SizeF size, int rasterWidth, int rasterHeight)
- {
- if (size == null || size.Width == 0)
- return;
- // Ratio of height/width of the original SVG size, to be used for scaling transformation
- float ratio = size.Height / size.Width;
- size.Width = rasterWidth > 0 ? (float)rasterWidth : size.Width;
- size.Height = rasterHeight > 0 ? (float)rasterHeight : size.Height;
- if (rasterHeight == 0 && rasterWidth > 0)
- {
- size.Height = (int)(rasterWidth * ratio);
- }
- else if (rasterHeight > 0 && rasterWidth == 0)
- {
- size.Width = (int)(rasterHeight / ratio);
- }
- }
- public override void Write(XmlTextWriter writer)
- {
- //Save previous culture and switch to invariant for writing
- var previousCulture = Thread.CurrentThread.CurrentCulture;
- try
- {
- Thread.CurrentThread.CurrentCulture = CultureInfo.InvariantCulture;
- base.Write(writer);
- }
- finally
- {
- // Make sure to set back the old culture even an error occurred.
- //Switch culture back
- Thread.CurrentThread.CurrentCulture = previousCulture;
- }
- }
- public void Write(Stream stream, bool useBom = true)
- {
- var xmlWriter = new XmlTextWriter(stream, useBom ? Encoding.UTF8 : new System.Text.UTF8Encoding(false));
- xmlWriter.Formatting = Formatting.Indented;
- xmlWriter.WriteStartDocument();
- xmlWriter.WriteDocType("svg", "-//W3C//DTD SVG 1.1//EN", "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd", null);
- if (!String.IsNullOrEmpty(this.ExternalCSSHref))
- xmlWriter.WriteProcessingInstruction("xml-stylesheet", String.Format("type=\"text/css\" href=\"{0}\"", this.ExternalCSSHref));
- this.Write(xmlWriter);
- xmlWriter.Flush();
- }
- public void Write(string path, bool useBom = true)
- {
- using (var fs = new FileStream(path, FileMode.Create, FileAccess.Write))
- {
- this.Write(fs, useBom);
- }
- }
- }
- }
- #pragma warning restore
|