This repository has been archived by the owner on Oct 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
SKCanvasView.razor.cs
153 lines (124 loc) · 3.48 KB
/
SKCanvasView.razor.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Components;
using Microsoft.JSInterop;
using SkiaSharp.Views.Blazor.Internal;
namespace SkiaSharp.Views.Blazor
{
public partial class SKCanvasView : IDisposable
{
private SKCanvasViewInterop interop = null!;
private SizeWatcherInterop sizeWatcher = null!;
private DpiWatcherInterop dpiWatcher = null!;
private ElementReference htmlCanvas;
private SKSizeI pixelSize;
private byte[]? pixels;
private GCHandle pixelsHandle;
private bool ignorePixelScaling;
private double dpi;
private SKSize canvasSize;
#if DEBUG
public TimeSpan LastFrameDuration;
#endif
[Inject]
IJSRuntime JS { get; set; } = null!;
[Parameter]
public bool IgnorePixelScaling
{
get => ignorePixelScaling;
set
{
if (ignorePixelScaling != value)
{
ignorePixelScaling = value;
Invalidate();
}
}
}
[Parameter]
public Action<SKPaintSurfaceEventArgs>? OnPaintSurface { get; set; }
[Parameter(CaptureUnmatchedValues = true)]
public IReadOnlyDictionary<string, object>? AdditionalAttributes { get; set; }
protected override async Task OnAfterRenderAsync(bool firstRender)
{
if (firstRender)
{
interop = await SKCanvasViewInterop.ImportAsync(JS, htmlCanvas);
sizeWatcher = await SizeWatcherInterop.ImportAsync(JS, htmlCanvas, OnSizeChanged);
dpiWatcher = await DpiWatcherInterop.ImportAsync(JS, OnDpiChanged);
}
}
public void Invalidate()
{
if (canvasSize.Width <= 0 || canvasSize.Height <= 0 || dpi <= 0)
return;
var info = CreateBitmap(out var unscaledSize);
var userVisibleSize = IgnorePixelScaling ? unscaledSize : info.Size;
using (var surface = SKSurface.Create(info, pixelsHandle.AddrOfPinnedObject(), info.RowBytes))
{
if (IgnorePixelScaling)
{
var canvas = surface.Canvas;
canvas.Scale((float)dpi);
canvas.Save();
}
OnPaintSurface?.Invoke(new SKPaintSurfaceEventArgs(surface, info.WithSize(userVisibleSize), info));
}
interop.Invalidate(pixelsHandle.AddrOfPinnedObject(), info.Size);
}
private SKImageInfo CreateBitmap(out SKSizeI unscaledSize)
{
var size = CreateSize(out unscaledSize);
var info = new SKImageInfo(size.Width, size.Height, SKImageInfo.PlatformColorType, SKAlphaType.Opaque);
if (pixels == null || pixelSize.Width != info.Width || pixelSize.Height != info.Height)
{
FreeBitmap();
pixels = new byte[info.BytesSize];
pixelsHandle = GCHandle.Alloc(pixels, GCHandleType.Pinned);
pixelSize = info.Size;
}
return info;
}
private SKSizeI CreateSize(out SKSizeI unscaledSize)
{
unscaledSize = SKSizeI.Empty;
var w = canvasSize.Width;
var h = canvasSize.Height;
if (!IsPositive(w) || !IsPositive(h))
return SKSizeI.Empty;
unscaledSize = new SKSizeI((int)w, (int)h);
return new SKSizeI((int)(w * dpi), (int)(h * dpi));
static bool IsPositive(double value)
{
return !double.IsNaN(value) && !double.IsInfinity(value) && value > 0;
}
}
private void FreeBitmap()
{
if (pixels != null)
{
pixelsHandle.Free();
pixels = null;
}
}
private void OnDpiChanged(double newDpi)
{
dpi = newDpi;
Invalidate();
}
private void OnSizeChanged(SKSize newSize)
{
canvasSize = newSize;
Invalidate();
}
public void Dispose()
{
dpiWatcher.Unsubscribe(OnDpiChanged);
sizeWatcher.Dispose();
interop.Dispose();
FreeBitmap();
}
}
}