-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathPlotBase.Export.cs
66 lines (59 loc) · 2.21 KB
/
PlotBase.Export.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="PlotBase.Export.cs" company="OxyPlot">
// Copyright (c) 2014 OxyPlot contributors
// </copyright>
// <summary>
// Represents a control that displays a <see cref="PlotModel" />.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace OxyPlot.Avalonia
{
using global::Avalonia.Media.Imaging;
using System.IO;
/// <summary>
/// Represents a control that displays a <see cref="PlotModel" />.
/// </summary>
public partial class PlotBase
{
/// <summary>
/// Saves the PlotView as a bitmap.
/// </summary>
/// <param name="stream">Stream to which to write the bitmap.</param>
public void SaveBitmap(Stream stream)
{
SaveBitmap(stream, -1, -1, ActualModel.Background);
}
/// <summary>
/// Saves the PlotView as a bitmap.
/// </summary>
/// <param name="stream">Stream to which to write the bitmap.</param>
/// <param name="width">The width.</param>
/// <param name="height">The height.</param>
/// <param name="background">The background.</param>
public void SaveBitmap(Stream stream, int width, int height, OxyColor background)
{
if (width <= 0)
{
width = (int)Bounds.Width;
}
if (height <= 0)
{
height = (int)Bounds.Height;
}
if (!background.IsVisible())
{
background = Background.ToOxyColor();
}
PngExporter.Export(ActualModel, stream, width, height, background);
}
/// <summary>
/// Renders the PlotView to a bitmap.
/// </summary>
/// <returns>A bitmap.</returns>
public Bitmap ToBitmap()
{
var background = ActualModel.Background.IsVisible() ? ActualModel.Background : Background.ToOxyColor();
return PngExporter.ExportToBitmap(ActualModel, (int)Bounds.Width, (int)Bounds.Height, background);
}
}
}