48
Source/OxyPlot.WindowsForms/SvgExporter.cs
Normal file
48
Source/OxyPlot.WindowsForms/SvgExporter.cs
Normal file
@@ -0,0 +1,48 @@
|
||||
// --------------------------------------------------------------------------------------------------------------------
|
||||
// <copyright file="SvgExporter.cs" company="OxyPlot">
|
||||
// Copyright (c) 2014 OxyPlot contributors
|
||||
// </copyright>
|
||||
// <summary>
|
||||
// Provides functionality to export plots to scalable vector graphics using <see cref="Graphics" /> for text measuring.
|
||||
// </summary>
|
||||
// --------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
namespace OxyPlot.WindowsForms
|
||||
{
|
||||
using System;
|
||||
using System.Drawing;
|
||||
|
||||
/// <summary>
|
||||
/// Provides functionality to export plots to scalable vector graphics using <see cref="Graphics" /> for text measuring.
|
||||
/// </summary>
|
||||
public class SvgExporter : OxyPlot.SvgExporter, IDisposable
|
||||
{
|
||||
/// <summary>
|
||||
/// The graphics drawing surface.
|
||||
/// </summary>
|
||||
private Graphics g;
|
||||
|
||||
/// <summary>
|
||||
/// The render context.
|
||||
/// </summary>
|
||||
private GraphicsRenderContext grc;
|
||||
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="SvgExporter" /> class.
|
||||
/// </summary>
|
||||
public SvgExporter()
|
||||
{
|
||||
this.g = Graphics.FromHwnd(IntPtr.Zero);
|
||||
this.TextMeasurer = this.grc = new GraphicsRenderContext(this.g);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
|
||||
/// </summary>
|
||||
public void Dispose()
|
||||
{
|
||||
this.g.Dispose();
|
||||
this.grc.Dispose();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user