-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsvgToPaperJs.js
267 lines (250 loc) · 9.06 KB
/
svgToPaperJs.js
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
/**
* Created in 03/12/2012 20:52:32
* Copyright 2012 Daniele Pignedoli <[email protected]>
*
* @license <a href="http://www.gnu.org/licenses/gpl.html" target="_new">
* http://www.gnu.org/licenses/gpl.html</a><br /><br />
* This program is free software; you can redistribute it and/or modify<br />
* it under the terms of the GNU General Public License as published by<br />
* the Free Software Foundation; either version 2 of the License, or<br />
* (at your option) any later version<br />
* <br />
* This program is distributed in the hope that it will be useful,<br />
* but WITHOUT ANY WARRANTY; without even the implied warranty of<br />
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the<br />
* GNU General Public License for more details:<br />
* <b>http://www.gnu.org/licenses/gpl.html</b><br />
* <br />
* You should have received a copy of the GNU General Public License<br />
* along with this program; if not, write to the Free Software<br />
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,<br />
* MA 02110-1301, USA<br />
* */
/**
* Convert a pathData (http://www.w3.org/TR/SVG/paths.html#PathData) from a SVG file (with
* ABSOLUTE coords) to commands to recreate the vector path in PaperJs.org (using a paper.Path())
* */
svgToPaperJs = function(){
this._cur_x = null;
this._cur_y = null;
this._register = [];
this.convertPath = function(pathString, closed)
{
// If closed is not specified, assume false.
var closePath = typeof closed !== 'undefined' ? closed : false;
try
{
if(typeof pathString !== 'object')
{
throw "pathString must be an object.";
}
// Cycle begin.
for(var i in pathString){
for(var key in pathString[i])
{
switch(key){
case 'M': // moveTo http://www.w3.org/TR/SVG/paths.html#PathDataMovetoCommands
this.applyPathMoveTo(pathString[i][key]);
break;
case 'H': // Horizontal Line http://www.w3.org/TR/SVG/paths.html#PathDataLinetoCommands
this.applyPathHorizontalLine(pathString[i][key]);
break;
case 'L': // Line http://www.w3.org/TR/SVG/paths.html#PathDataLinetoCommands
this.applyPathLineTo(pathString[i][key]);
break;
case 'C': // cubic Bézier curve http://www.w3.org/TR/SVG/paths.html#PathDataCubicBezierCommands
this.applyPathCubicCurve(pathString[i][key]);
break;
case 'V': // Vertical Line http://www.w3.org/TR/SVG/paths.html#PathDataLinetoCommands
this.applyPathVerticalLine(pathString[i][key]);
break;
case 'A':
this.applyPathArc(pathString[i][key]);
break;
case 'z': // close path http://www.w3.org/TR/SVG/paths.html#PathDataClosePathCommand
this._register.push(['closePath']);
var closePath = false;
break;
default:
throw "Command " + key + " not implemented!";
break;
}
}
}
if(closed === true)
{
this._register.push(['closePath']);
}
return this._register;
}
catch(error)
{
if(typeof console === 'object')
{
console.error('Error: ' + error);
}
else
{
alert('Error: ' + error);
}
return false;
}
};
/**
* Apply a moveTo function (M) in a path. Some SVG softwares utilize multiple M commands instead of LineTo,
* so I apply 1 moveTo, and if we have more points use lineTo for others.
* */
this.applyPathMoveTo = function(points)
{
this._cur_x = points[0][0];
this._cur_y = points[0][1];
this._register.push(['moveTo', [points[0][0], points[0][1]]]);
if(points.length > 1)
{
this.applyPathLineTo(points.splice(1, points.length -1));
}
};
/**/
/**
* Create a horizonta line, using lineTo
* */
this.applyPathHorizontalLine =function(x_point)
{
// Calculate the X position
this._cur_x = x_point;
this._register.push(['lineTo', [this._cur_x, this._cur_y]]);
};
/**/
/**
* Create a vertical line, using lineTo
* */
this.applyPathVerticalLine = function(y_point)
{
// Calculate the Y position
this._cur_y = y_point;
this._register.push(['lineTo', [this._cur_x, this._cur_y]]);
};
/**/
/**
* Create a line, using lineTo. We can have multiple points
* */
this.applyPathLineTo = function(points)
{
//var linePoints = this.groupByN(points, 2);
this._register.push(['lineTo', points]);
this._cur_x = points[points.length-1][0];
this._cur_y = points[points.length-1][1];
};
/**/
/**
* Cubic Bezier curve, we can have multiple curves, but the number of elements must be a multiple of 3
* */
this.applyPathCubicCurve = function(curvePoints)
{
if(curvePoints.length % 3 === 0)
{
var curves = this.groupByN(curvePoints, 3);
this._cur_x = curves[curves.length-1][2][0];
this._cur_y = curves[curves.length-1][2][1];
this._register.push(['cubicCurveTo', curves]);
}
else
{
throw "Cubic Bézier Curve: curvePoints elements must be a multiple of 3, " + curvePoints.length + " given.";
}
};
/**/
/**
* Arc curve, we can have multiple arcs, but the number of elements must be a multiple of 2
* */
this.applyPathArc = function(curvePoints)
{
if(curvePoints.length % 2 === 0)
{
var curves = this.groupByN(curvePoints, 2);
this._cur_x = curves[curves.length-1][1][0];
this._cur_y = curves[curves.length-1][1][1];
this._register.push(['arcTo', curves]);
}
else
{
throw "Path curve: curvePoints elements must be a multiple of 2, " + curvePoints.length + " given.";
}
};
/**/
/**
* Create an paper.Path(), populate with the pathString and return it.
* */
this.createPaperPath = function(name, pathString, closed)
{
var item = new paper.Path();
item.name = name;
var commands = this.convertPath(pathString, closed);
this.applyPaperFunctions(item, commands);
return item;
};
/**/
/**
* Apply the paperJs function to the item.
* http://paperjs.org/reference/path
* */
this.applyPaperFunctions = function(item, commands)
{
var register = typeof commands == 'undefined' ? this._register : commands;
// Cycle begin.
for(var cmd in register){
var points = register[cmd][1];
switch(register[cmd][0]){
case 'moveTo':
item.moveTo(points[0], points[1]);
break;
case 'lineTo':
for(ip in points)
{
//console.log('lineTo', points[ip]);
item.lineTo(points[ip]);
}
break;
case 'cubicCurveTo':
for(ic in points)
{
item.cubicCurveTo(points[ic][0], points[ic][1], points[ic][2]);
}
break;
case 'arcTo':
for(ia in points)
{
//console.log('arcTo', [points[ia][0], points[ia][1]]);
item.arcTo(points[ia][0], points[ia][1]);
}
break;
case 'closePath':
item.closePath();
break;
}
}
// reset the registry
this._register = [];
};
/**/
/**
* Group elements in small group by N elements.
* */
this.groupByN = function(items, n)
{
for(var i = 0, grp = [], ngrp = -1, m = items.length; i < m; i++)
{
if(i % n === 0)
{
ngrp++;
if(typeof grp[ngrp] == 'undefined')
{
grp[ngrp] = [];
}
}
grp[ngrp].push(items[i]);
}
return grp;
};
/**/
}