@nmmty/lazycanvas 0.6.5 → 1.0.0-dev.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (80) hide show
  1. package/ReadMe.md +1 -1
  2. package/biome.json +41 -0
  3. package/dist/core/Interpolation.d.ts +30 -0
  4. package/dist/core/Interpolation.js +200 -0
  5. package/dist/core/Scene.d.ts +96 -0
  6. package/dist/core/Scene.js +172 -0
  7. package/dist/core/Signal.d.ts +133 -0
  8. package/dist/core/Signal.js +255 -0
  9. package/dist/core/SignalUtils.d.ts +133 -0
  10. package/dist/core/SignalUtils.js +333 -0
  11. package/dist/core/ThreadScheduler.d.ts +38 -0
  12. package/dist/core/ThreadScheduler.js +74 -0
  13. package/dist/helpers/Filters.js +1 -1
  14. package/dist/helpers/FontsList.js +18 -18
  15. package/dist/helpers/Utlis.d.ts +3 -3
  16. package/dist/helpers/Utlis.js +15 -18
  17. package/dist/helpers/index.d.ts +3 -3
  18. package/dist/index.d.ts +10 -0
  19. package/dist/index.js +10 -0
  20. package/dist/jsx-runtime.d.ts +17 -0
  21. package/dist/jsx-runtime.js +111 -0
  22. package/dist/structures/LazyCanvas.d.ts +3 -45
  23. package/dist/structures/LazyCanvas.js +11 -74
  24. package/dist/structures/components/BaseLayer.d.ts +34 -12
  25. package/dist/structures/components/BaseLayer.js +68 -35
  26. package/dist/structures/components/BezierLayer.d.ts +16 -37
  27. package/dist/structures/components/BezierLayer.js +83 -46
  28. package/dist/structures/components/{Group.d.ts → Div.d.ts} +22 -16
  29. package/dist/structures/components/{Group.js → Div.js} +38 -39
  30. package/dist/structures/components/ImageLayer.d.ts +1 -1
  31. package/dist/structures/components/ImageLayer.js +27 -26
  32. package/dist/structures/components/LineLayer.d.ts +11 -37
  33. package/dist/structures/components/LineLayer.js +42 -42
  34. package/dist/structures/components/MorphLayer.d.ts +3 -32
  35. package/dist/structures/components/MorphLayer.js +35 -47
  36. package/dist/structures/components/Path2DLayer.d.ts +4 -32
  37. package/dist/structures/components/Path2DLayer.js +28 -33
  38. package/dist/structures/components/PolygonLayer.d.ts +2 -31
  39. package/dist/structures/components/PolygonLayer.js +35 -38
  40. package/dist/structures/components/QuadraticLayer.d.ts +16 -33
  41. package/dist/structures/components/QuadraticLayer.js +80 -42
  42. package/dist/structures/components/TextLayer.d.ts +4 -33
  43. package/dist/structures/components/TextLayer.js +60 -62
  44. package/dist/structures/components/index.d.ts +10 -11
  45. package/dist/structures/components/index.js +1 -2
  46. package/dist/structures/helpers/Exporter.d.ts +13 -4
  47. package/dist/structures/helpers/Exporter.js +80 -43
  48. package/dist/structures/helpers/Font.js +1 -17
  49. package/dist/structures/helpers/Gradient.js +32 -45
  50. package/dist/structures/helpers/Link.js +2 -14
  51. package/dist/structures/helpers/Pattern.js +9 -17
  52. package/dist/structures/helpers/index.d.ts +7 -7
  53. package/dist/structures/helpers/readers/JSONReader.d.ts +4 -4
  54. package/dist/structures/helpers/readers/JSONReader.js +34 -42
  55. package/dist/structures/helpers/readers/YAMLReader.js +7 -7
  56. package/dist/structures/managers/FontsManager.js +9 -18
  57. package/dist/structures/managers/LayersManager.d.ts +18 -28
  58. package/dist/structures/managers/LayersManager.js +14 -36
  59. package/dist/structures/managers/RenderManager.d.ts +1 -15
  60. package/dist/structures/managers/RenderManager.js +17 -110
  61. package/dist/structures/managers/index.d.ts +3 -5
  62. package/dist/structures/managers/index.js +0 -2
  63. package/dist/types/enum.d.ts +1 -2
  64. package/dist/types/enum.js +1 -2
  65. package/dist/types/index.d.ts +1 -1
  66. package/dist/types/types.d.ts +232 -107
  67. package/dist/utils/APNGEncoder.d.ts +67 -0
  68. package/dist/utils/APNGEncoder.js +205 -0
  69. package/dist/utils/DrawUtils.d.ts +9 -0
  70. package/dist/utils/DrawUtils.js +42 -0
  71. package/dist/utils/LazyUtil.js +1 -2
  72. package/dist/utils/utils.d.ts +4 -7
  73. package/dist/utils/utils.js +136 -77
  74. package/package.json +60 -59
  75. package/dist/structures/components/ClearLayer.d.ts +0 -147
  76. package/dist/structures/components/ClearLayer.js +0 -158
  77. package/dist/structures/managers/AnimationManager.d.ts +0 -120
  78. package/dist/structures/managers/AnimationManager.js +0 -99
  79. package/dist/structures/managers/PluginManager.d.ts +0 -230
  80. package/dist/structures/managers/PluginManager.js +0 -182
@@ -1,18 +1,13 @@
1
1
  import { AnyLayer } from "../../types";
2
- import { Group } from "../components";
3
- import { LazyCanvas } from "../LazyCanvas";
2
+ import { Div } from "../components";
4
3
  /**
5
4
  * Interface representing the LayersManager.
6
5
  */
7
6
  export interface ILayersManager {
8
- /**
9
- * The LazyCanvas instance associated with this manager.
10
- */
11
- lazyCanvas: LazyCanvas;
12
7
  /**
13
8
  * A map storing layers or groups with their IDs as keys.
14
9
  */
15
- map: Map<string, AnyLayer | Group>;
10
+ map: Map<string, AnyLayer | Div>;
16
11
  /**
17
12
  * Whether debugging is enabled.
18
13
  */
@@ -22,34 +17,29 @@ export interface ILayersManager {
22
17
  * Class representing a manager for handling layers and groups.
23
18
  */
24
19
  export declare class LayersManager implements ILayersManager {
25
- /**
26
- * The LazyCanvas instance associated with this manager.
27
- */
28
- lazyCanvas: LazyCanvas;
29
20
  /**
30
21
  * A map storing layers or groups with their IDs as keys.
31
22
  */
32
- map: Map<string, AnyLayer | Group>;
23
+ map: Map<string, AnyLayer | Div>;
33
24
  /**
34
25
  * Whether debugging is enabled.
35
26
  */
36
27
  debug: boolean;
37
28
  /**
38
29
  * Constructs a new LayersManager instance.
39
- * @param {LazyCanvas} [lazyCanvas] - The LazyCanvas instance to associate with this manager.
40
30
  * @param {Object} [opts] - Optional settings for the LayersManager.
41
31
  * @param {boolean} [opts.debug] - Whether debugging is enabled.
42
32
  */
43
- constructor(lazyCanvas: LazyCanvas, opts?: {
33
+ constructor(opts?: {
44
34
  debug?: boolean;
45
35
  });
46
36
  /**
47
37
  * Adds layers or groups to the map.
48
- * @param {Array<AnyLayer | Group>} [layers] - The layers or groups to add to the map.
38
+ * @param {Array<AnyLayer | Div>} [layers] - The layers or groups to add to the map.
49
39
  * @returns {this} The current instance for chaining.
50
40
  * @throws {LazyError} If a layer with the same ID already exists.
51
41
  */
52
- add(...layers: Array<AnyLayer | Group>): this;
42
+ add(...layers: Array<AnyLayer | Div>): this;
53
43
  /**
54
44
  * Removes layers or groups from the map by their IDs.
55
45
  * @param {string[]} [ids] - The IDs of the layers or groups to remove.
@@ -65,9 +55,9 @@ export declare class LayersManager implements ILayersManager {
65
55
  * Retrieves a layer or group from the map by its ID.
66
56
  * @param {string} [id] - The ID of the layer or group to retrieve.
67
57
  * @param {boolean} [cross] - Whether to search within groups for the ID.
68
- * @returns {AnyLayer | Group | undefined} The retrieved layer or group, or undefined if not found.
58
+ * @returns {AnyLayer | Div | undefined} The retrieved layer or group, or undefined if not found.
69
59
  */
70
- get(id: string, cross?: boolean): AnyLayer | Group | undefined;
60
+ get(id: string, cross?: boolean): AnyLayer | Div | undefined;
71
61
  /**
72
62
  * Checks if a layer or group exists in the map by its ID.
73
63
  * @param {string} [id] - The ID of the layer or group to check.
@@ -81,9 +71,9 @@ export declare class LayersManager implements ILayersManager {
81
71
  size(): number;
82
72
  /**
83
73
  * Retrieves the values (layers and groups) from the map.
84
- * @returns {IterableIterator<AnyLayer | Group>} An iterator for the map values.
74
+ * @returns {IterableIterator<AnyLayer | Div>} An iterator for the map values.
85
75
  */
86
- values(): IterableIterator<AnyLayer | Group>;
76
+ values(): IterableIterator<AnyLayer | Div>;
87
77
  /**
88
78
  * Retrieves the keys (IDs) from the map.
89
79
  * @returns {IterableIterator<string>} An iterator for the map keys.
@@ -91,15 +81,15 @@ export declare class LayersManager implements ILayersManager {
91
81
  keys(): IterableIterator<string>;
92
82
  /**
93
83
  * Retrieves the entries (key-value pairs) from the map.
94
- * @returns {IterableIterator<[string, AnyLayer | Group]>} An iterator for the map entries.
84
+ * @returns {IterableIterator<[string, AnyLayer | Div]>} An iterator for the map entries.
95
85
  */
96
- entries(): IterableIterator<[string, AnyLayer | Group]>;
86
+ entries(): IterableIterator<[string, AnyLayer | Div]>;
97
87
  /**
98
88
  * Executes a callback function for each layer or group in the map.
99
89
  * @param {Function} [callbackfn] - The callback function to execute.
100
90
  * @returns {this} The current instance for chaining.
101
91
  */
102
- forEach(callbackfn: (value: AnyLayer | Group, key: string, map: Map<string, AnyLayer | Group>) => void): this;
92
+ forEach(callbackfn: (value: AnyLayer | Div, key: string, map: Map<string, AnyLayer | Div>) => void): this;
103
93
  /**
104
94
  * Converts the map to a JSON object.
105
95
  * @returns {object} The JSON representation of the map.
@@ -113,15 +103,15 @@ export declare class LayersManager implements ILayersManager {
113
103
  fromJSON(json: object): this;
114
104
  /**
115
105
  * Converts the map to an array of layers and groups.
116
- * @returns {Array<AnyLayer | Group>} An array of layers and groups.
106
+ * @returns {Array<AnyLayer | Div>} An array of layers and groups.
117
107
  */
118
- toArray(): Array<AnyLayer | Group>;
108
+ toArray(): Array<AnyLayer | Div>;
119
109
  /**
120
110
  * Populates the map from an array of layers and groups.
121
- * @param {Array<AnyLayer | Group>} [array] - The array of layers and groups to populate the map from.
111
+ * @param {Array<AnyLayer | Div>} [array] - The array of layers and groups to populate the map from.
122
112
  * @returns {this} The current instance for chaining.
123
113
  */
124
- fromArray(array: Array<AnyLayer | Group>): this;
114
+ fromArray(array: Array<AnyLayer | Div>): this;
125
115
  /**
126
116
  * Sorts the layers and groups in the map by their zIndex property.
127
117
  * @returns {void}
@@ -130,7 +120,7 @@ export declare class LayersManager implements ILayersManager {
130
120
  /**
131
121
  * Searches for a layer or group by its ID, including within groups.
132
122
  * @param {string} [id] - The ID of the layer or group to search for.
133
- * @returns {AnyLayer | Group | undefined} The found layer or group, or undefined if not found.
123
+ * @returns {AnyLayer | Div | undefined} The found layer or group, or undefined if not found.
134
124
  */
135
125
  private crossSearch;
136
126
  }
@@ -7,50 +7,32 @@ const LazyUtil_1 = require("../../utils/LazyUtil");
7
7
  * Class representing a manager for handling layers and groups.
8
8
  */
9
9
  class LayersManager {
10
- /**
11
- * The LazyCanvas instance associated with this manager.
12
- */
13
- lazyCanvas;
14
- /**
15
- * A map storing layers or groups with their IDs as keys.
16
- */
17
- map;
18
- /**
19
- * Whether debugging is enabled.
20
- */
21
- debug;
22
10
  /**
23
11
  * Constructs a new LayersManager instance.
24
- * @param {LazyCanvas} [lazyCanvas] - The LazyCanvas instance to associate with this manager.
25
12
  * @param {Object} [opts] - Optional settings for the LayersManager.
26
13
  * @param {boolean} [opts.debug] - Whether debugging is enabled.
27
14
  */
28
- constructor(lazyCanvas, opts) {
29
- this.lazyCanvas = lazyCanvas;
15
+ constructor(opts) {
30
16
  this.map = new Map();
31
17
  this.debug = opts?.debug || false;
32
18
  }
33
19
  /**
34
20
  * Adds layers or groups to the map.
35
- * @param {Array<AnyLayer | Group>} [layers] - The layers or groups to add to the map.
21
+ * @param {Array<AnyLayer | Div>} [layers] - The layers or groups to add to the map.
36
22
  * @returns {this} The current instance for chaining.
37
23
  * @throws {LazyError} If a layer with the same ID already exists.
38
24
  */
39
25
  add(...layers) {
40
26
  if (this.debug)
41
- LazyUtil_1.LazyLog.log('info', `Adding layers...\nlength: ${layers.length}`);
27
+ LazyUtil_1.LazyLog.log("info", `Adding layers...\nlength: ${layers.length}`);
42
28
  let layersArray = layers.flat();
43
- layersArray = layersArray.filter(l => l !== undefined);
29
+ layersArray = layersArray.filter((l) => l !== undefined);
44
30
  for (const layer of layersArray) {
45
31
  if (this.debug)
46
- LazyUtil_1.LazyLog.log('none', `Data:`, 'toJSON' in layer ? layer.toJSON() : layer);
32
+ LazyUtil_1.LazyLog.log("none", `Data:`, "toJSON" in layer ? layer.toJSON() : layer);
47
33
  if (this.map.has(layer.id))
48
34
  throw new LazyUtil_1.LazyError("Layer already exists");
49
35
  this.map.set(layer.id, layer);
50
- // onLayerAdded hook
51
- if (this.lazyCanvas && this.lazyCanvas.manager?.plugins) {
52
- this.lazyCanvas.manager.plugins.executeHook('onLayerAdded', this.lazyCanvas, layer);
53
- }
54
36
  }
55
37
  this.sort();
56
38
  return this;
@@ -64,10 +46,6 @@ class LayersManager {
64
46
  for (const id of ids) {
65
47
  const layer = this.map.get(id);
66
48
  this.map.delete(id);
67
- // onLayerRemoved hook
68
- if (this.lazyCanvas && this.lazyCanvas.manager?.plugins) {
69
- this.lazyCanvas.manager.plugins.executeHook('onLayerRemoved', this.lazyCanvas, id);
70
- }
71
49
  }
72
50
  return this;
73
51
  }
@@ -83,7 +61,7 @@ class LayersManager {
83
61
  * Retrieves a layer or group from the map by its ID.
84
62
  * @param {string} [id] - The ID of the layer or group to retrieve.
85
63
  * @param {boolean} [cross] - Whether to search within groups for the ID.
86
- * @returns {AnyLayer | Group | undefined} The retrieved layer or group, or undefined if not found.
64
+ * @returns {AnyLayer | Div | undefined} The retrieved layer or group, or undefined if not found.
87
65
  */
88
66
  get(id, cross = false) {
89
67
  if (cross)
@@ -108,7 +86,7 @@ class LayersManager {
108
86
  }
109
87
  /**
110
88
  * Retrieves the values (layers and groups) from the map.
111
- * @returns {IterableIterator<AnyLayer | Group>} An iterator for the map values.
89
+ * @returns {IterableIterator<AnyLayer | Div>} An iterator for the map values.
112
90
  */
113
91
  values() {
114
92
  return this.map.values();
@@ -122,7 +100,7 @@ class LayersManager {
122
100
  }
123
101
  /**
124
102
  * Retrieves the entries (key-value pairs) from the map.
125
- * @returns {IterableIterator<[string, AnyLayer | Group]>} An iterator for the map entries.
103
+ * @returns {IterableIterator<[string, AnyLayer | Div]>} An iterator for the map entries.
126
104
  */
127
105
  entries() {
128
106
  return this.map.entries();
@@ -154,18 +132,18 @@ class LayersManager {
154
132
  }
155
133
  /**
156
134
  * Converts the map to an array of layers and groups.
157
- * @returns {Array<AnyLayer | Group>} An array of layers and groups.
135
+ * @returns {Array<AnyLayer | Div>} An array of layers and groups.
158
136
  */
159
137
  toArray() {
160
138
  return Array.from(this.map.values());
161
139
  }
162
140
  /**
163
141
  * Populates the map from an array of layers and groups.
164
- * @param {Array<AnyLayer | Group>} [array] - The array of layers and groups to populate the map from.
142
+ * @param {Array<AnyLayer | Div>} [array] - The array of layers and groups to populate the map from.
165
143
  * @returns {this} The current instance for chaining.
166
144
  */
167
145
  fromArray(array) {
168
- this.map = new Map(array.map(l => [l.id, l]));
146
+ this.map = new Map(array.map((l) => [l.id, l]));
169
147
  return this;
170
148
  }
171
149
  /**
@@ -178,14 +156,14 @@ class LayersManager {
178
156
  /**
179
157
  * Searches for a layer or group by its ID, including within groups.
180
158
  * @param {string} [id] - The ID of the layer or group to search for.
181
- * @returns {AnyLayer | Group | undefined} The found layer or group, or undefined if not found.
159
+ * @returns {AnyLayer | Div | undefined} The found layer or group, or undefined if not found.
182
160
  */
183
161
  crossSearch(id) {
184
162
  for (const layer of Array.from(this.map.values())) {
185
163
  if (layer.id === id)
186
164
  return layer;
187
- if (layer instanceof components_1.Group) {
188
- const result = layer.layers.find(l => l.id === id);
165
+ if (layer instanceof components_1.Div) {
166
+ const result = layer.layers.find((l) => l.id === id);
189
167
  if (result)
190
168
  return result;
191
169
  }
@@ -35,18 +35,9 @@ export declare class RenderManager implements IRenderManager {
35
35
  constructor(lazyCanvas: LazyCanvas, opts?: {
36
36
  debug?: boolean;
37
37
  });
38
- /**
39
- * Merges multiple ImageData objects into a single ImageData object.
40
- * @param {SKRSContext2D} [ctx] - The canvas rendering context.
41
- * @param {ImageData[]} [imageDataList] - The list of ImageData objects to merge.
42
- * @param {number} [width] - The width of the resulting ImageData.
43
- * @param {number} [height] - The height of the resulting ImageData.
44
- * @returns {ImageData} The merged ImageData object.
45
- */
46
- private mergeImageData;
47
38
  /**
48
39
  * Renders a single layer or group of layers.
49
- * @param {AnyLayer | Group} [layer] - The layer or group to render.
40
+ * @param {AnyLayer | Div} [layer] - The layer or group to render.
50
41
  * @returns {Promise<SKRSContext2D>} The canvas rendering context after rendering.
51
42
  */
52
43
  private renderLayer;
@@ -56,11 +47,6 @@ export declare class RenderManager implements IRenderManager {
56
47
  * @returns {Promise<Buffer | SKRSContext2D | string>} The rendered output in the specified format.
57
48
  */
58
49
  private renderStatic;
59
- /**
60
- * Renders an animated sequence of layers and exports it as a GIF.
61
- * @returns {Promise<Buffer>} The rendered animation as a Buffer.
62
- */
63
- private renderAnimation;
64
50
  /**
65
51
  * Renders all layers and exports the result in the specified format.
66
52
  * @param {AnyExport} [format] - The export format (e.g., buffer, context, SVG, or canvas).
@@ -3,20 +3,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.RenderManager = void 0;
4
4
  const types_1 = require("../../types");
5
5
  const LazyUtil_1 = require("../../utils/LazyUtil");
6
- // @ts-ignore
7
- const gifenc_1 = require("gifenc");
8
6
  /**
9
7
  * Class responsible for managing rendering operations, including static and animated exports.
10
8
  */
11
9
  class RenderManager {
12
- /**
13
- * The LazyCanvas instance used for rendering.
14
- */
15
- lazyCanvas;
16
- /**
17
- * Whether debugging is enabled.
18
- */
19
- debug;
20
10
  /**
21
11
  * Constructs a new RenderManager instance.
22
12
  * @param {LazyCanvas} [lazyCanvas] - The LazyCanvas instance to use for rendering.
@@ -27,48 +17,18 @@ class RenderManager {
27
17
  this.lazyCanvas = lazyCanvas;
28
18
  this.debug = opts?.debug || false;
29
19
  }
30
- /**
31
- * Merges multiple ImageData objects into a single ImageData object.
32
- * @param {SKRSContext2D} [ctx] - The canvas rendering context.
33
- * @param {ImageData[]} [imageDataList] - The list of ImageData objects to merge.
34
- * @param {number} [width] - The width of the resulting ImageData.
35
- * @param {number} [height] - The height of the resulting ImageData.
36
- * @returns {ImageData} The merged ImageData object.
37
- */
38
- mergeImageData(ctx, imageDataList, width, height) {
39
- const mergedData = ctx.createImageData(width, height);
40
- const mergedPixels = mergedData.data;
41
- for (const imageData of imageDataList) {
42
- const pixels = imageData.data;
43
- for (let i = 0; i < pixels.length; i += 4) {
44
- const r = pixels[i];
45
- const g = pixels[i + 1];
46
- const b = pixels[i + 2];
47
- const a = pixels[i + 3] / 255;
48
- const existingAlpha = mergedPixels[i + 3] / 255;
49
- const newAlpha = a + existingAlpha * (1 - a);
50
- if (newAlpha > 0) {
51
- mergedPixels[i] = (r * a + mergedPixels[i] * existingAlpha * (1 - a)) / newAlpha;
52
- mergedPixels[i + 1] = (g * a + mergedPixels[i + 1] * existingAlpha * (1 - a)) / newAlpha;
53
- mergedPixels[i + 2] = (b * a + mergedPixels[i + 2] * existingAlpha * (1 - a)) / newAlpha;
54
- mergedPixels[i + 3] = newAlpha * 255;
55
- }
56
- }
57
- }
58
- return mergedData;
59
- }
60
20
  /**
61
21
  * Renders a single layer or group of layers.
62
- * @param {AnyLayer | Group} [layer] - The layer or group to render.
22
+ * @param {AnyLayer | Div} [layer] - The layer or group to render.
63
23
  * @returns {Promise<SKRSContext2D>} The canvas rendering context after rendering.
64
24
  */
65
25
  async renderLayer(layer) {
66
26
  if (this.debug)
67
- LazyUtil_1.LazyLog.log('info', `Rendering ${layer.id}...\nData:`, layer.toJSON());
27
+ LazyUtil_1.LazyLog.log("info", `Rendering ${layer.id}...\nData:`, layer.toJSON());
68
28
  if (layer.visible) {
69
- this.lazyCanvas.ctx.globalCompositeOperation = layer.props?.globalComposite || 'source-over';
29
+ this.lazyCanvas.ctx.globalCompositeOperation = layer.props?.globalComposite || "source-over";
70
30
  await layer.draw(this.lazyCanvas.ctx, this.lazyCanvas.canvas, this.lazyCanvas.manager.layers, this.debug);
71
- this.lazyCanvas.ctx.shadowColor = 'transparent';
31
+ this.lazyCanvas.ctx.shadowColor = "transparent";
72
32
  }
73
33
  return this.lazyCanvas.ctx;
74
34
  }
@@ -79,7 +39,7 @@ class RenderManager {
79
39
  */
80
40
  async renderStatic(exportType) {
81
41
  if (this.debug)
82
- LazyUtil_1.LazyLog.log('info', `Rendering static...`);
42
+ LazyUtil_1.LazyLog.log("info", `Rendering static...`);
83
43
  for (const layer of this.lazyCanvas.manager.layers.toArray()) {
84
44
  await this.renderLayer(layer);
85
45
  }
@@ -88,96 +48,43 @@ class RenderManager {
88
48
  case "buffer":
89
49
  case types_1.Export.SVG:
90
50
  case "svg":
91
- if ('getContent' in this.lazyCanvas.canvas) {
92
- return this.lazyCanvas.canvas.getContent().toString('utf8');
51
+ if ("getContent" in this.lazyCanvas.canvas) {
52
+ return this.lazyCanvas.canvas.getContent().toString("utf8");
93
53
  }
94
- return this.lazyCanvas.canvas.toBuffer('image/png');
54
+ return this.lazyCanvas.canvas.toBuffer("image/png");
95
55
  case types_1.Export.CTX:
96
56
  case "ctx":
97
57
  return this.lazyCanvas.ctx;
98
58
  default:
99
- if ('getContent' in this.lazyCanvas.canvas) {
100
- return this.lazyCanvas.canvas.getContent().toString('utf8');
59
+ if ("getContent" in this.lazyCanvas.canvas) {
60
+ return this.lazyCanvas.canvas.getContent().toString("utf8");
101
61
  }
102
- return this.lazyCanvas.canvas.toBuffer('image/png');
62
+ return this.lazyCanvas.canvas.toBuffer("image/png");
103
63
  }
104
64
  }
105
- /**
106
- * Renders an animated sequence of layers and exports it as a GIF.
107
- * @returns {Promise<Buffer>} The rendered animation as a Buffer.
108
- */
109
- async renderAnimation() {
110
- const encoder = new gifenc_1.GIFEncoder();
111
- if (this.debug)
112
- LazyUtil_1.LazyLog.log('info', `Rendering animation...\nData:`, this.lazyCanvas.manager.animation.options);
113
- const frameBuffer = [];
114
- const { width, height } = this.lazyCanvas.options;
115
- const delay = 1000 / this.lazyCanvas.manager.animation.options.frameRate;
116
- const { loop, colorSpace, maxColors, transparency, utils } = this.lazyCanvas.manager.animation.options;
117
- let frameNumber = 0;
118
- for (const layer of this.lazyCanvas.manager.layers.toArray()) {
119
- // onAnimationFrame hook
120
- this.lazyCanvas.manager.plugins.executeHook('onAnimationFrame', this.lazyCanvas, frameNumber);
121
- const ctx = await this.renderLayer(layer);
122
- frameBuffer.push(ctx.getImageData(0, 0, width, height));
123
- if (frameBuffer.length > utils.buffer.size) {
124
- frameBuffer.shift();
125
- }
126
- const mergeData = this.mergeImageData(ctx, frameBuffer, width, height);
127
- const palette = (0, gifenc_1.quantize)(mergeData.data, maxColors, { format: colorSpace });
128
- const index = (0, gifenc_1.applyPalette)(mergeData.data, palette, colorSpace);
129
- encoder.writeFrame(index, width, height, {
130
- palette,
131
- transparent: transparency,
132
- delay,
133
- loop
134
- });
135
- if (utils.clear)
136
- ctx.clearRect(0, 0, width, height);
137
- frameNumber++;
138
- }
139
- encoder.finish();
140
- return encoder.bytesView();
141
- }
142
65
  /**
143
66
  * Renders all layers and exports the result in the specified format.
144
67
  * @param {AnyExport} [format] - The export format (e.g., buffer, context, SVG, or canvas).
145
68
  * @returns {Promise<Buffer | SKRSContext2D | Canvas | SvgCanvas | string>} The rendered output in the specified format.
146
69
  */
147
70
  async render(format) {
148
- let result;
149
- // beforeRender hook
150
- this.lazyCanvas.manager.plugins.executeHook('beforeRender', this.lazyCanvas);
151
71
  switch (format) {
152
72
  case types_1.Export.BUFFER:
153
73
  case "buffer":
154
- if (this.lazyCanvas.options.animated) {
155
- result = await this.renderAnimation();
156
- }
157
- else {
158
- result = await this.renderStatic(types_1.Export.BUFFER);
159
- }
160
- break;
74
+ return await this.renderStatic(types_1.Export.BUFFER);
161
75
  case types_1.Export.CTX:
162
76
  case "ctx":
163
- result = this.lazyCanvas.ctx;
164
- break;
77
+ return this.lazyCanvas.ctx;
165
78
  case types_1.Export.SVG:
166
79
  case "svg":
167
- result = await this.renderStatic(types_1.Export.SVG);
168
- break;
80
+ return await this.renderStatic(types_1.Export.SVG);
169
81
  case types_1.Export.CANVAS:
170
82
  case "canvas":
171
- await this.renderStatic(this.lazyCanvas.options.exportType === 'svg' ? types_1.Export.SVG : types_1.Export.BUFFER);
172
- result = this.lazyCanvas.canvas;
173
- break;
83
+ await this.renderStatic(this.lazyCanvas.options.exportType === "svg" ? types_1.Export.SVG : types_1.Export.BUFFER);
84
+ return this.lazyCanvas.canvas;
174
85
  default:
175
- result = await this.renderStatic(types_1.Export.BUFFER);
176
- break;
86
+ return await this.renderStatic(types_1.Export.BUFFER);
177
87
  }
178
- // afterRender hook
179
- this.lazyCanvas.manager.plugins.executeHook('afterRender', this.lazyCanvas);
180
- return result;
181
88
  }
182
89
  }
183
90
  exports.RenderManager = RenderManager;
@@ -1,5 +1,3 @@
1
- export * from './LayersManager';
2
- export * from './PluginManager';
3
- export * from './FontsManager';
4
- export * from './RenderManager';
5
- export * from './AnimationManager';
1
+ export * from "./LayersManager";
2
+ export * from "./FontsManager";
3
+ export * from "./RenderManager";
@@ -15,7 +15,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./LayersManager"), exports);
18
- __exportStar(require("./PluginManager"), exports);
19
18
  __exportStar(require("./FontsManager"), exports);
20
19
  __exportStar(require("./RenderManager"), exports);
21
- __exportStar(require("./AnimationManager"), exports);
@@ -73,10 +73,9 @@ export declare enum Export {
73
73
  CTX = "ctx",
74
74
  BUFFER = "buffer",
75
75
  PNG = "png",
76
- JPEG = "jpeg",
76
+ APNG = "apng",
77
77
  JPG = "jpg",
78
78
  SVG = "svg",
79
- GIF = "gif",
80
79
  WEBP = "webp",
81
80
  YAML = "yaml",
82
81
  JSON = "json"
@@ -86,10 +86,9 @@ var Export;
86
86
  Export["CTX"] = "ctx";
87
87
  Export["BUFFER"] = "buffer";
88
88
  Export["PNG"] = "png";
89
- Export["JPEG"] = "jpeg";
89
+ Export["APNG"] = "apng";
90
90
  Export["JPG"] = "jpg";
91
91
  Export["SVG"] = "svg";
92
- Export["GIF"] = "gif";
93
92
  Export["WEBP"] = "webp";
94
93
  Export["YAML"] = "yaml";
95
94
  Export["JSON"] = "json";
@@ -1,2 +1,2 @@
1
1
  export type * from "./types";
2
- export * from './enum';
2
+ export * from "./enum";