apexify.js 5.1.0 → 5.1.1
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.
- package/CHANGELOG.md +23 -38
- package/README.md +5 -9
- package/lib/Canvas/utils/Custom/advancedLines.ts +387 -387
- package/lib/Canvas/utils/Custom/customLines.ts +206 -206
- package/lib/Canvas/utils/types.ts +983 -983
- package/package.json +198 -198
package/package.json
CHANGED
|
@@ -1,198 +1,198 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "apexify.js",
|
|
3
|
-
"version": "5.1.
|
|
4
|
-
"description": "🎨 Advanced Canvas Rendering Library - Professional image processing, shape drawing, text effects, patterns, filters, and charts. Built with TypeScript & Rust for high performance.",
|
|
5
|
-
"author": "zenith-79",
|
|
6
|
-
"license": "MIT",
|
|
7
|
-
"homepage": "https://
|
|
8
|
-
"repository": {
|
|
9
|
-
"type": "git",
|
|
10
|
-
"url": "https://github.com/
|
|
11
|
-
},
|
|
12
|
-
"bugs": {
|
|
13
|
-
"url": "https://github.com/
|
|
14
|
-
},
|
|
15
|
-
"engines": {
|
|
16
|
-
"node": ">=16.0.0"
|
|
17
|
-
},
|
|
18
|
-
"main": "./dist/cjs/index.js",
|
|
19
|
-
"module": "./dist/esm/index.js",
|
|
20
|
-
"types": "./dist/esm/index.d.ts",
|
|
21
|
-
"exports": {
|
|
22
|
-
".": {
|
|
23
|
-
"require": "./dist/cjs/index.js",
|
|
24
|
-
"import": "./dist/esm/index.js"
|
|
25
|
-
}
|
|
26
|
-
},
|
|
27
|
-
"scripts": {
|
|
28
|
-
"clean": "rimraf ./dist",
|
|
29
|
-
"build:esm": "tsc --build tsconfig.esm.json --force",
|
|
30
|
-
"build:cjs": "tsc --build tsconfig.cjs.json --force",
|
|
31
|
-
"build": "npm run clean && npm run build:esm && npm run build:cjs",
|
|
32
|
-
"watch": "tsc -w",
|
|
33
|
-
"start": "node ./dist/cjs/index.js",
|
|
34
|
-
"dev": "ts-node ./lib/index.ts",
|
|
35
|
-
"publish:prep": "npm run build",
|
|
36
|
-
"publish": "npm run publish:prep && npm publish"
|
|
37
|
-
},
|
|
38
|
-
"files": [
|
|
39
|
-
"lib",
|
|
40
|
-
"dist",
|
|
41
|
-
"types",
|
|
42
|
-
"README.md",
|
|
43
|
-
"CHANGELOG.md",
|
|
44
|
-
"LICENSE"
|
|
45
|
-
],
|
|
46
|
-
"keywords": [
|
|
47
|
-
"canvas",
|
|
48
|
-
"node-canvas",
|
|
49
|
-
"@napi-rs/canvas",
|
|
50
|
-
"canvas-rendering",
|
|
51
|
-
"canvas-library",
|
|
52
|
-
"canvas-api",
|
|
53
|
-
"html5-canvas",
|
|
54
|
-
"nodejs-canvas",
|
|
55
|
-
"typescript-canvas",
|
|
56
|
-
"javascript-canvas",
|
|
57
|
-
"canvas-shapes",
|
|
58
|
-
"canvas-drawing",
|
|
59
|
-
"canvas-text",
|
|
60
|
-
"canvas-gradients",
|
|
61
|
-
"canvas-shadows",
|
|
62
|
-
"canvas-strokes",
|
|
63
|
-
"canvas-patterns",
|
|
64
|
-
"canvas-backgrounds",
|
|
65
|
-
"canvas-compositing",
|
|
66
|
-
"canvas-performance",
|
|
67
|
-
"high-performance-canvas",
|
|
68
|
-
"image-processing",
|
|
69
|
-
"image-manipulation",
|
|
70
|
-
"image-filters",
|
|
71
|
-
"image-effects",
|
|
72
|
-
"image-masking",
|
|
73
|
-
"image-distortion",
|
|
74
|
-
"image-warping",
|
|
75
|
-
"image-stitching",
|
|
76
|
-
"image-collage",
|
|
77
|
-
"image-compression",
|
|
78
|
-
"image-conversion",
|
|
79
|
-
"image-rotation",
|
|
80
|
-
"image-cropping",
|
|
81
|
-
"image-resizing",
|
|
82
|
-
"image-blur",
|
|
83
|
-
"image-sharpen",
|
|
84
|
-
"image-brightness",
|
|
85
|
-
"image-contrast",
|
|
86
|
-
"image-saturation",
|
|
87
|
-
"image-sepia",
|
|
88
|
-
"image-grayscale",
|
|
89
|
-
"image-invert",
|
|
90
|
-
"professional-filters",
|
|
91
|
-
"vintage-filters",
|
|
92
|
-
"cinematic-filters",
|
|
93
|
-
"lens-flare",
|
|
94
|
-
"vignette",
|
|
95
|
-
"chromatic-aberration",
|
|
96
|
-
"film-grain",
|
|
97
|
-
"graphics",
|
|
98
|
-
"visual-effects",
|
|
99
|
-
"visual-design",
|
|
100
|
-
"graphic-design",
|
|
101
|
-
"web-graphics",
|
|
102
|
-
"server-side-rendering",
|
|
103
|
-
"png",
|
|
104
|
-
"jpeg",
|
|
105
|
-
"jpg",
|
|
106
|
-
"webp",
|
|
107
|
-
"avif",
|
|
108
|
-
"svg",
|
|
109
|
-
"gif",
|
|
110
|
-
"animated-gif",
|
|
111
|
-
"gif-creation",
|
|
112
|
-
"video-background",
|
|
113
|
-
"video-frames",
|
|
114
|
-
"chart-generation",
|
|
115
|
-
"bar-charts",
|
|
116
|
-
"pie-charts",
|
|
117
|
-
"line-charts",
|
|
118
|
-
"data-visualization",
|
|
119
|
-
"pattern-overlays",
|
|
120
|
-
"blend-modes",
|
|
121
|
-
"canvas-noise",
|
|
122
|
-
"text-rendering",
|
|
123
|
-
"text-on-path",
|
|
124
|
-
"text-curves",
|
|
125
|
-
"font-management",
|
|
126
|
-
"text-effects",
|
|
127
|
-
"text-glow",
|
|
128
|
-
"text-shadow",
|
|
129
|
-
"text-stroke",
|
|
130
|
-
"text-gradients",
|
|
131
|
-
"text-decoration",
|
|
132
|
-
"text-spacing",
|
|
133
|
-
"text-alignment",
|
|
134
|
-
"text-wrapping",
|
|
135
|
-
"text-rotation",
|
|
136
|
-
"shape-drawing",
|
|
137
|
-
"geometric-shapes",
|
|
138
|
-
"custom-shapes",
|
|
139
|
-
"heart-shape",
|
|
140
|
-
"star-shape",
|
|
141
|
-
"polygon-shape",
|
|
142
|
-
"gradient-fills",
|
|
143
|
-
"linear-gradients",
|
|
144
|
-
"radial-gradients",
|
|
145
|
-
"image-compositing",
|
|
146
|
-
"rust-canvas",
|
|
147
|
-
"napi-rs",
|
|
148
|
-
"sharp",
|
|
149
|
-
"jimp",
|
|
150
|
-
"image-processing-library",
|
|
151
|
-
"canvas-toolkit",
|
|
152
|
-
"typescript-graphics",
|
|
153
|
-
"javascript-graphics",
|
|
154
|
-
"canvas-utilities",
|
|
155
|
-
"image-utilities",
|
|
156
|
-
"graphics-utilities",
|
|
157
|
-
"visual-tools",
|
|
158
|
-
"design-tools",
|
|
159
|
-
"creative-tools",
|
|
160
|
-
"batch-operations",
|
|
161
|
-
"color-palette",
|
|
162
|
-
"color-extraction",
|
|
163
|
-
"business-cards",
|
|
164
|
-
"marketing-materials",
|
|
165
|
-
"ui-elements",
|
|
166
|
-
"game-graphics",
|
|
167
|
-
"digital-art",
|
|
168
|
-
"apexify",
|
|
169
|
-
"apexpainter",
|
|
170
|
-
"apexifyjs",
|
|
171
|
-
"node-image-processing",
|
|
172
|
-
"canvas-manipulation",
|
|
173
|
-
"image-editing",
|
|
174
|
-
"photo-editing",
|
|
175
|
-
"image-enhancement",
|
|
176
|
-
"canvas-animation",
|
|
177
|
-
"image-batch",
|
|
178
|
-
"image-chain",
|
|
179
|
-
"image-utilities-nodejs"
|
|
180
|
-
],
|
|
181
|
-
"dependencies": {
|
|
182
|
-
"@napi-rs/canvas": "^0.1.80",
|
|
183
|
-
"apexify.js": "^5.0.0",
|
|
184
|
-
"axios": "^1.7.7",
|
|
185
|
-
"fs-extra": "^11.3.1",
|
|
186
|
-
"gifencoder": "^2.0.1",
|
|
187
|
-
"imgur": "^2.5.0",
|
|
188
|
-
"jimp": "^1.6.0",
|
|
189
|
-
"jszip": "^3.10.1",
|
|
190
|
-
"sharp": "^0.34.4"
|
|
191
|
-
},
|
|
192
|
-
"devDependencies": {
|
|
193
|
-
"@types/gifencoder": "^2.0.3",
|
|
194
|
-
"@types/node": "^22.5.4",
|
|
195
|
-
"ts-node": "^10.9.2",
|
|
196
|
-
"typescript": "^5.6.2"
|
|
197
|
-
}
|
|
198
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "apexify.js",
|
|
3
|
+
"version": "5.1.1",
|
|
4
|
+
"description": "🎨 Advanced Canvas Rendering Library - Professional image processing, shape drawing, text effects, patterns, filters, and charts. Built with TypeScript & Rust for high performance.",
|
|
5
|
+
"author": "zenith-79",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"homepage": "https://apexifyjs.vercel.app",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "https://github.com/EIAS79/Apexify.js"
|
|
11
|
+
},
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/EIAS79/Apexify.js/issues"
|
|
14
|
+
},
|
|
15
|
+
"engines": {
|
|
16
|
+
"node": ">=16.0.0"
|
|
17
|
+
},
|
|
18
|
+
"main": "./dist/cjs/index.js",
|
|
19
|
+
"module": "./dist/esm/index.js",
|
|
20
|
+
"types": "./dist/esm/index.d.ts",
|
|
21
|
+
"exports": {
|
|
22
|
+
".": {
|
|
23
|
+
"require": "./dist/cjs/index.js",
|
|
24
|
+
"import": "./dist/esm/index.js"
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"scripts": {
|
|
28
|
+
"clean": "rimraf ./dist",
|
|
29
|
+
"build:esm": "tsc --build tsconfig.esm.json --force",
|
|
30
|
+
"build:cjs": "tsc --build tsconfig.cjs.json --force",
|
|
31
|
+
"build": "npm run clean && npm run build:esm && npm run build:cjs",
|
|
32
|
+
"watch": "tsc -w",
|
|
33
|
+
"start": "node ./dist/cjs/index.js",
|
|
34
|
+
"dev": "ts-node ./lib/index.ts",
|
|
35
|
+
"publish:prep": "npm run build",
|
|
36
|
+
"publish": "npm run publish:prep && npm publish"
|
|
37
|
+
},
|
|
38
|
+
"files": [
|
|
39
|
+
"lib",
|
|
40
|
+
"dist",
|
|
41
|
+
"types",
|
|
42
|
+
"README.md",
|
|
43
|
+
"CHANGELOG.md",
|
|
44
|
+
"LICENSE"
|
|
45
|
+
],
|
|
46
|
+
"keywords": [
|
|
47
|
+
"canvas",
|
|
48
|
+
"node-canvas",
|
|
49
|
+
"@napi-rs/canvas",
|
|
50
|
+
"canvas-rendering",
|
|
51
|
+
"canvas-library",
|
|
52
|
+
"canvas-api",
|
|
53
|
+
"html5-canvas",
|
|
54
|
+
"nodejs-canvas",
|
|
55
|
+
"typescript-canvas",
|
|
56
|
+
"javascript-canvas",
|
|
57
|
+
"canvas-shapes",
|
|
58
|
+
"canvas-drawing",
|
|
59
|
+
"canvas-text",
|
|
60
|
+
"canvas-gradients",
|
|
61
|
+
"canvas-shadows",
|
|
62
|
+
"canvas-strokes",
|
|
63
|
+
"canvas-patterns",
|
|
64
|
+
"canvas-backgrounds",
|
|
65
|
+
"canvas-compositing",
|
|
66
|
+
"canvas-performance",
|
|
67
|
+
"high-performance-canvas",
|
|
68
|
+
"image-processing",
|
|
69
|
+
"image-manipulation",
|
|
70
|
+
"image-filters",
|
|
71
|
+
"image-effects",
|
|
72
|
+
"image-masking",
|
|
73
|
+
"image-distortion",
|
|
74
|
+
"image-warping",
|
|
75
|
+
"image-stitching",
|
|
76
|
+
"image-collage",
|
|
77
|
+
"image-compression",
|
|
78
|
+
"image-conversion",
|
|
79
|
+
"image-rotation",
|
|
80
|
+
"image-cropping",
|
|
81
|
+
"image-resizing",
|
|
82
|
+
"image-blur",
|
|
83
|
+
"image-sharpen",
|
|
84
|
+
"image-brightness",
|
|
85
|
+
"image-contrast",
|
|
86
|
+
"image-saturation",
|
|
87
|
+
"image-sepia",
|
|
88
|
+
"image-grayscale",
|
|
89
|
+
"image-invert",
|
|
90
|
+
"professional-filters",
|
|
91
|
+
"vintage-filters",
|
|
92
|
+
"cinematic-filters",
|
|
93
|
+
"lens-flare",
|
|
94
|
+
"vignette",
|
|
95
|
+
"chromatic-aberration",
|
|
96
|
+
"film-grain",
|
|
97
|
+
"graphics",
|
|
98
|
+
"visual-effects",
|
|
99
|
+
"visual-design",
|
|
100
|
+
"graphic-design",
|
|
101
|
+
"web-graphics",
|
|
102
|
+
"server-side-rendering",
|
|
103
|
+
"png",
|
|
104
|
+
"jpeg",
|
|
105
|
+
"jpg",
|
|
106
|
+
"webp",
|
|
107
|
+
"avif",
|
|
108
|
+
"svg",
|
|
109
|
+
"gif",
|
|
110
|
+
"animated-gif",
|
|
111
|
+
"gif-creation",
|
|
112
|
+
"video-background",
|
|
113
|
+
"video-frames",
|
|
114
|
+
"chart-generation",
|
|
115
|
+
"bar-charts",
|
|
116
|
+
"pie-charts",
|
|
117
|
+
"line-charts",
|
|
118
|
+
"data-visualization",
|
|
119
|
+
"pattern-overlays",
|
|
120
|
+
"blend-modes",
|
|
121
|
+
"canvas-noise",
|
|
122
|
+
"text-rendering",
|
|
123
|
+
"text-on-path",
|
|
124
|
+
"text-curves",
|
|
125
|
+
"font-management",
|
|
126
|
+
"text-effects",
|
|
127
|
+
"text-glow",
|
|
128
|
+
"text-shadow",
|
|
129
|
+
"text-stroke",
|
|
130
|
+
"text-gradients",
|
|
131
|
+
"text-decoration",
|
|
132
|
+
"text-spacing",
|
|
133
|
+
"text-alignment",
|
|
134
|
+
"text-wrapping",
|
|
135
|
+
"text-rotation",
|
|
136
|
+
"shape-drawing",
|
|
137
|
+
"geometric-shapes",
|
|
138
|
+
"custom-shapes",
|
|
139
|
+
"heart-shape",
|
|
140
|
+
"star-shape",
|
|
141
|
+
"polygon-shape",
|
|
142
|
+
"gradient-fills",
|
|
143
|
+
"linear-gradients",
|
|
144
|
+
"radial-gradients",
|
|
145
|
+
"image-compositing",
|
|
146
|
+
"rust-canvas",
|
|
147
|
+
"napi-rs",
|
|
148
|
+
"sharp",
|
|
149
|
+
"jimp",
|
|
150
|
+
"image-processing-library",
|
|
151
|
+
"canvas-toolkit",
|
|
152
|
+
"typescript-graphics",
|
|
153
|
+
"javascript-graphics",
|
|
154
|
+
"canvas-utilities",
|
|
155
|
+
"image-utilities",
|
|
156
|
+
"graphics-utilities",
|
|
157
|
+
"visual-tools",
|
|
158
|
+
"design-tools",
|
|
159
|
+
"creative-tools",
|
|
160
|
+
"batch-operations",
|
|
161
|
+
"color-palette",
|
|
162
|
+
"color-extraction",
|
|
163
|
+
"business-cards",
|
|
164
|
+
"marketing-materials",
|
|
165
|
+
"ui-elements",
|
|
166
|
+
"game-graphics",
|
|
167
|
+
"digital-art",
|
|
168
|
+
"apexify",
|
|
169
|
+
"apexpainter",
|
|
170
|
+
"apexifyjs",
|
|
171
|
+
"node-image-processing",
|
|
172
|
+
"canvas-manipulation",
|
|
173
|
+
"image-editing",
|
|
174
|
+
"photo-editing",
|
|
175
|
+
"image-enhancement",
|
|
176
|
+
"canvas-animation",
|
|
177
|
+
"image-batch",
|
|
178
|
+
"image-chain",
|
|
179
|
+
"image-utilities-nodejs"
|
|
180
|
+
],
|
|
181
|
+
"dependencies": {
|
|
182
|
+
"@napi-rs/canvas": "^0.1.80",
|
|
183
|
+
"apexify.js": "^5.0.0",
|
|
184
|
+
"axios": "^1.7.7",
|
|
185
|
+
"fs-extra": "^11.3.1",
|
|
186
|
+
"gifencoder": "^2.0.1",
|
|
187
|
+
"imgur": "^2.5.0",
|
|
188
|
+
"jimp": "^1.6.0",
|
|
189
|
+
"jszip": "^3.10.1",
|
|
190
|
+
"sharp": "^0.34.4"
|
|
191
|
+
},
|
|
192
|
+
"devDependencies": {
|
|
193
|
+
"@types/gifencoder": "^2.0.3",
|
|
194
|
+
"@types/node": "^22.5.4",
|
|
195
|
+
"ts-node": "^10.9.2",
|
|
196
|
+
"typescript": "^5.6.2"
|
|
197
|
+
}
|
|
198
|
+
}
|