-
Notifications
You must be signed in to change notification settings - Fork 7.9k
Expand file tree
/
Copy pathimage-node.ts
More file actions
90 lines (71 loc) · 2.36 KB
/
Copy pathimage-node.ts
File metadata and controls
90 lines (71 loc) · 2.36 KB
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
import type { CanvasRenderer } from "../canvas-renderer";
import { VisualNode, type VisualNodeParams } from "./visual-node";
export interface ImageNodeParams extends VisualNodeParams {
url: string;
maxSourceSize?: number;
}
interface CachedImageSource {
source: HTMLImageElement | OffscreenCanvas;
width: number;
height: number;
}
const imageSourceCache = new Map<string, Promise<CachedImageSource>>();
function loadImageSource(
url: string,
maxSourceSize?: number,
): Promise<CachedImageSource> {
const cacheKey = `${url}::${maxSourceSize ?? "full"}`;
const cached = imageSourceCache.get(cacheKey);
if (cached) return cached;
const promise = (async (): Promise<CachedImageSource> => {
const image = new Image();
await new Promise<void>((resolve, reject) => {
image.onload = () => resolve();
image.onerror = () => reject(new Error("Image load failed"));
image.src = url;
});
const naturalWidth = image.naturalWidth;
const naturalHeight = image.naturalHeight;
const exceedsLimit =
maxSourceSize &&
(naturalWidth > maxSourceSize || naturalHeight > maxSourceSize);
if (exceedsLimit) {
const scale = Math.min(
maxSourceSize / naturalWidth,
maxSourceSize / naturalHeight,
);
const scaledWidth = Math.round(naturalWidth * scale);
const scaledHeight = Math.round(naturalHeight * scale);
const offscreen = new OffscreenCanvas(scaledWidth, scaledHeight);
const ctx = offscreen.getContext("2d");
if (ctx) {
ctx.drawImage(image, 0, 0, scaledWidth, scaledHeight);
return { source: offscreen, width: scaledWidth, height: scaledHeight };
}
}
return { source: image, width: naturalWidth, height: naturalHeight };
})();
imageSourceCache.set(cacheKey, promise);
return promise;
}
export class ImageNode extends VisualNode<ImageNodeParams> {
private cachedSource: Promise<CachedImageSource>;
constructor(params: ImageNodeParams) {
super(params);
this.cachedSource = loadImageSource(params.url, params.maxSourceSize);
}
async render({ renderer, time }: { renderer: CanvasRenderer; time: number }) {
await super.render({ renderer, time });
if (!this.isInRange({ time })) {
return;
}
const { source, width, height } = await this.cachedSource;
await this.renderVisual({
renderer,
source,
sourceWidth: width || renderer.width,
sourceHeight: height || renderer.height,
timelineTime: time,
});
}
}