graphics.dart
17.6 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
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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
/*
* Copyright (C) 2017, David PHAM-VAN <dev.nfet.net@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
part of pdf;
enum PdfLineCap { joinMiter, joinRound, joinBevel }
class PdfGraphics {
/// Graphic context number
var _context = 0;
final PdfPage page;
final PdfStream buf;
PdfGraphics(this.page, this.buf);
PdfFont get defaultFont {
if (page.pdfDocument.fonts.length == 0) {
PdfFont.helvetica(page.pdfDocument);
}
return page.pdfDocument.fonts.elementAt(0);
}
void fillPath() {
buf.putString("f\n");
}
void strokePath() {
buf.putString("S\n");
}
void closePath() {
buf.putString("s\n");
}
void clipPath() {
buf.putString("W n\n");
}
/// This releases any resources used by this Graphics object. You must use
/// this method once finished with it.
///
/// When using [PdfPage], you can create another fresh Graphics instance,
/// which will draw over this one.
void restoreContext() {
if (_context > 0) {
// restore graphics context
buf.putString("Q\n");
_context--;
}
}
void saveContext() {
// save graphics context
buf.putString("q\n");
_context++;
}
/// Draws an image onto the page.
///
/// This method is implemented with [Ascii85Encoder] encoding and the
/// zip stream deflater. It results in a stream that is anywhere
/// from 3 to 10 times as big as the image. This obviously needs some
/// improvement, but it works well for small images
///
/// @param img The Image
/// @param x coordinate on page
/// @param y coordinate on page
/// @param w Width on page
/// @param h height on page
/// @param bgcolor Background colour
/// @return true if drawn
void drawImage(PdfImage img, double x, double y, [double w, double h]) {
if (w == null) w = img.width.toDouble();
if (h == null) h = img.height.toDouble() * w / img.width.toDouble();
// The image needs to be registered in the page resources
page.xObjects[img.name] = img;
// q w 0 0 h x y cm % the coordinate matrix
buf.putString("q ");
buf.putNumList(<double>[w, 0.0, 0.0, h, x, y]);
buf.putString(" cm ${img.name} Do Q\n");
}
/// Draws a line between two coordinates.
///
/// If the first coordinate is the same as the last one drawn
/// (i.e. a previous drawLine, moveto, etc) it is ignored.
///
/// @param x1 coordinate
/// @param y1 coordinate
/// @param x2 coordinate
/// @param y2 coordinate
void drawLine(double x1, double y1, double x2, double y2) {
moveTo(x1, y1);
lineTo(x2, y2);
}
/// Draws a polygon, linking the first and last coordinates.
///
/// @param xp Array of x coordinates
/// @param yp Array of y coordinates
/// @param np number of points in polygon
void drawPolygon(PdfPolygon p) {
_polygon(p.points);
}
void drawEllipse(double x, double y, double r1, double r2) {
// The best 4-spline magic number
double m4 = 0.551784;
// Starting point
moveTo(x, y - r2);
buf.putNumList(
<double>[x + m4 * r1, y - r2, x + r1, y - m4 * r2, x + r1, y]);
buf.putString(" c\n");
buf.putNumList(
<double>[x + r1, y + m4 * r2, x + m4 * r1, y + r2, x, y + r2]);
buf.putString(" c\n");
buf.putNumList(
<double>[x - m4 * r1, y + r2, x - r1, y + m4 * r2, x - r1, y]);
buf.putString(" c\n");
buf.putNumList(
<double>[x - r1, y - m4 * r2, x - m4 * r1, y - r2, x, y - r2]);
buf.putString(" c\n");
}
/// We override Graphics.drawRect as it doesn't join the 4 lines.
/// Also, Pdf provides us with a Rectangle operator, so we will use that.
///
/// @param x coordinate
/// @param y coordinate
/// @param w width
/// @param h height
void drawRect(
double x,
double y,
double w,
double h,
) {
buf.putNumList(<double>[x, y, w, h]);
buf.putString(" re\n");
}
/// This draws a string.
///
/// @param x coordinate
/// @param y coordinate
/// @oaran s String to draw
void drawString(PdfFont font, double size, String s, double x, double y) {
if (!page.fonts.containsKey(font.name)) {
page.fonts[font.name] = font;
}
buf.putString("BT ");
buf.putNumList(<double>[x, y]);
buf.putString(" Td ${font.name} ");
buf.putNum(size);
buf.putString(" Tf ");
buf.putText(s);
buf.putString(" Tj ET\n");
}
/// Sets the color for drawing
///
/// @param c Color to use
void setColor(PdfColor color) {
buf.putNumList(<double>[color.r, color.g, color.b]);
buf.putString(" rg ");
buf.putNumList(<double>[color.r, color.g, color.b]);
buf.putString(" RG\n");
}
/// Set the transformation Matrix
void setTransform(Matrix4 t) {
var s = t.storage;
buf.putNumList(<double>[s[0], s[1], s[4], s[5], s[12], s[13]]);
buf.putString(" cm\n");
}
/// This adds a line segment to the current path
///
/// @param x coordinate
/// @param y coordinate
void lineTo(double x, double y) {
buf.putNumList(<double>[x, y]);
buf.putString(" l\n");
}
/// This moves the current drawing point.
///
/// @param x coordinate
/// @param y coordinate
void moveTo(double x, double y) {
buf.putNumList(<double>[x, y]);
buf.putString(" m\n");
}
/// Draw a cubic bézier curve from the current point to (x3,y3)
/// using (x1,y1) as the control point at the beginning of the curve
/// and (x2,y2) as the control point at the end of the curve.
///
/// @param x1 first control point
/// @param y1 first control point
/// @param x2 second control point
/// @param y2 second control point
/// @param x3 end point
/// @param y3 end point
void curveTo(
double x1, double y1, double x2, double y2, double x3, double y3) {
buf.putNumList(<double>[x1, y1, x2, y2, x3, y3]);
buf.putString(" c\n");
}
double _vectorAngle(double ux, double uy, double vx, double vy) {
final d = math.sqrt(ux * ux + uy * uy) * math.sqrt(vx * vx + vy * vy);
if (d == 0.0) return 0.0;
var c = (ux * vx + uy * vy) / d;
if (c < -1.0) {
c = -1.0;
} else if (c > 1.0) c = 1.0;
final s = ux * vy - uy * vx;
c = math.acos(c);
return c.sign == s.sign ? c : -c;
}
void _endToCenterParameters(double x1, double y1, double x2, double y2,
bool large, bool sweep, double rx, double ry) {
// See http://www.w3.org/TR/SVG/implnote.html#ArcImplementationNotes F.6.5
rx = rx.abs();
ry = ry.abs();
final x1d = 0.5 * (x1 - x2);
final y1d = 0.5 * (y1 - y2);
var r = x1d * x1d / (rx * rx) + y1d * y1d / (ry * ry);
if (r > 1.0) {
var rr = math.sqrt(r);
rx *= rr;
ry *= rr;
r = x1d * x1d / (rx * rx) + y1d * y1d / (ry * ry);
} else if (r != 0.0) r = 1.0 / r - 1.0;
if (-1e-10 < r && r < 0.0) r = 0.0;
r = math.sqrt(r);
if (large == sweep) r = -r;
final cxd = (r * rx * y1d) / ry;
final cyd = -(r * ry * x1d) / rx;
final cx = cxd + 0.5 * (x1 + x2);
final cy = cyd + 0.5 * (y1 + y2);
final theta = _vectorAngle(1.0, 0.0, (x1d - cxd) / rx, (y1d - cyd) / ry);
var dTheta = _vectorAngle((x1d - cxd) / rx, (y1d - cyd) / ry,
(-x1d - cxd) / rx, (-y1d - cyd) / ry) %
(math.pi * 2.0);
if (sweep == false && dTheta > 0.0)
dTheta -= math.pi * 2.0;
else if (sweep == true && dTheta < 0.0) dTheta += math.pi * 2.0;
_bezierArcFromCentre(cx, cy, rx, ry, -theta, -dTheta);
}
void _bezierArcFromCentre(double cx, double cy, double rx, double ry,
double startAngle, double extent) {
int fragmentsCount;
double fragmentsAngle;
if (extent.abs() <= math.pi / 2.0) {
fragmentsCount = 1;
fragmentsAngle = extent;
} else {
fragmentsCount = (extent.abs() / (math.pi / 2.0)).ceil().toInt();
fragmentsAngle = extent / fragmentsCount.toDouble();
}
if (fragmentsAngle == 0.0) {
return;
}
final halfFragment = fragmentsAngle * 0.5;
var kappa =
(4.0 / 3.0 * (1.0 - math.cos(halfFragment)) / math.sin(halfFragment))
.abs();
if (fragmentsAngle < 0.0) kappa = -kappa;
var theta = startAngle;
final startFragment = theta + fragmentsAngle;
var c1 = math.cos(theta);
var s1 = math.sin(theta);
for (var i = 0; i < fragmentsCount; i++) {
final c0 = c1;
final s0 = s1;
theta = startFragment + i * fragmentsAngle;
c1 = math.cos(theta);
s1 = math.sin(theta);
curveTo(
cx + rx * (c0 - kappa * s0),
cy - ry * (s0 + kappa * c0),
cx + rx * (c1 + kappa * s1),
cy - ry * (s1 - kappa * c1),
cx + rx * c1,
cy - ry * s1);
}
}
/// Draws an elliptical arc from (x1, y1) to (x2, y2).
/// The size and orientation of the ellipse are defined by two radii (rx, ry)
/// The center (cx, cy) of the ellipse is calculated automatically to satisfy
/// the constraints imposed by the other parameters. large and sweep flags
/// contribute to the automatic calculations and help determine how the arc is drawn.
void _bezierArc(
double x1, double y1, double rx, double ry, double x2, double y2,
{large = false, sweep = false, phi = 0.0}) {
if (x1 == x2 && y1 == y2) {
// From https://www.w3.org/TR/SVG/implnote.html#ArcImplementationNotes:
// If the endpoints (x1, y1) and (x2, y2) are identical, then this is
// equivalent to omitting the elliptical arc segment entirely.
return;
}
if (rx.abs() <= 1e-10 || ry.abs() <= 1e-10) {
lineTo(x2, y2);
return;
}
if (phi != 0.0) {
// Our box bézier arcs can't handle rotations directly
// move to a well known point, eliminate phi and transform the other point
final mat = Matrix4.identity();
mat.translate(-x1, -y1);
mat.rotateZ(-phi);
final tr = mat.transform3(Vector3(x2, y2, 0.0));
_endToCenterParameters(0.0, 0.0, tr[0], tr[1], large, sweep, rx, ry);
} else {
_endToCenterParameters(x1, y1, x2, y2, large, sweep, rx, ry);
}
}
/// https://github.com/deeplook/svglib/blob/master/svglib/svglib.py#L911
void drawShape(String d, {stroke = true}) {
final exp = RegExp(r"([MmZzLlHhVvCcSsQqTtAaE])|(-[\.0-9]+)|([\.0-9]+)");
final matches = exp.allMatches(d + " E");
String action;
String lastAction;
List<double> points;
PdfPoint lastControl = PdfPoint(0.0, 0.0);
PdfPoint lastPoint = PdfPoint(0.0, 0.0);
for (var m in matches) {
var a = m.group(1);
var b = m.group(0);
if (a == null) {
points.add(double.parse(b));
continue;
}
if (action != null) {
switch (action) {
case 'm': // moveto relative
lastPoint =
PdfPoint(lastPoint.x + points[0], lastPoint.y + points[1]);
moveTo(lastPoint.x, lastPoint.y);
break;
case 'M': // moveto absolute
lastPoint = PdfPoint(points[0], points[1]);
moveTo(lastPoint.x, lastPoint.y);
break;
case 'l': // lineto relative
lastPoint =
PdfPoint(lastPoint.x + points[0], lastPoint.y + points[1]);
lineTo(lastPoint.x, lastPoint.y);
break;
case 'L': // lineto absolute
lastPoint = PdfPoint(points[0], points[1]);
lineTo(lastPoint.x, lastPoint.y);
break;
case 'H': // horizontal line absolute
lastPoint = PdfPoint(points[0], lastPoint.y);
lineTo(lastPoint.x, lastPoint.y);
break;
case 'V': // vertical line absolute
lastPoint = PdfPoint(lastPoint.x, points[0]);
lineTo(lastPoint.x, lastPoint.y);
break;
case 'h': // horizontal line relative
lastPoint = PdfPoint(lastPoint.x + points[0], lastPoint.y);
lineTo(lastPoint.x, lastPoint.y);
break;
case 'v': // vertical line relative
lastPoint = PdfPoint(lastPoint.x, lastPoint.y + points[0]);
lineTo(lastPoint.x, lastPoint.y);
break;
case 'C': // cubic bezier, absolute
var len = 0;
while (len < points.length) {
curveTo(points[len + 0], points[len + 1], points[len + 2],
points[len + 3], points[len + 4], points[len + 5]);
len += 6;
}
lastPoint =
PdfPoint(points[points.length - 2], points[points.length - 1]);
lastControl =
PdfPoint(points[points.length - 4], points[points.length - 3]);
break;
case 'S': // smooth cubic bézier, absolute
while (points.length >= 4) {
PdfPoint c1;
if ('cCsS'.indexOf(lastAction) >= 0) {
c1 = PdfPoint(lastPoint.x + (lastPoint.x - lastControl.x),
lastPoint.y + (lastPoint.y - lastControl.y));
} else {
c1 = lastPoint;
}
lastControl = PdfPoint(points[0], points[1]);
lastPoint = PdfPoint(points[2], points[3]);
curveTo(c1.x, c1.y, lastControl.x, lastControl.y, lastPoint.x,
lastPoint.y);
points = points.sublist(4);
lastAction = 'C';
}
break;
case 'c': // cubic bezier, relative
var len = 0;
while (len < points.length) {
points[len + 0] += lastPoint.x;
points[len + 1] += lastPoint.y;
points[len + 2] += lastPoint.x;
points[len + 3] += lastPoint.y;
points[len + 4] += lastPoint.x;
points[len + 5] += lastPoint.y;
curveTo(points[len + 0], points[len + 1], points[len + 2],
points[len + 3], points[len + 4], points[len + 5]);
lastPoint = PdfPoint(points[len + 4], points[len + 5]);
lastControl = PdfPoint(points[len + 2], points[len + 3]);
len += 6;
}
break;
case 's': // smooth cubic bézier, relative
while (points.length >= 4) {
PdfPoint c1;
if ('cCsS'.indexOf(lastAction) >= 0) {
c1 = PdfPoint(lastPoint.x + (lastPoint.x - lastControl.x),
lastPoint.y + (lastPoint.y - lastControl.y));
} else {
c1 = lastPoint;
}
lastControl =
PdfPoint(points[0] + lastPoint.x, points[1] + lastPoint.y);
lastPoint =
PdfPoint(points[2] + lastPoint.x, points[3] + lastPoint.y);
curveTo(c1.x, c1.y, lastControl.x, lastControl.y, lastPoint.x,
lastPoint.y);
points = points.sublist(4);
lastAction = 'c';
}
break;
// case 'Q': // quadratic bezier, absolute
// break;
// case 'T': // quadratic bezier, absolute
// break;
// case 'q': // quadratic bezier, relative
// break;
// case 't': // quadratic bezier, relative
// break;
case 'A': // elliptical arc, absolute
var len = 0;
while (len < points.length) {
_bezierArc(lastPoint.x, lastPoint.y, points[len + 0],
points[len + 1], points[len + 5], points[len + 6],
phi: points[len + 2] * math.pi / 180.0,
large: points[len + 3] != 0.0,
sweep: points[len + 4] != 0.0);
lastPoint = PdfPoint(points[len + 5], points[len + 6]);
len += 7;
}
break;
case 'a': // elliptical arc, relative
var len = 0;
while (len < points.length) {
points[len + 5] += lastPoint.x;
points[len + 6] += lastPoint.y;
_bezierArc(lastPoint.x, lastPoint.y, points[len + 0],
points[len + 1], points[len + 5], points[len + 6],
phi: points[len + 2] * math.pi / 180.0,
large: points[len + 3] != 0.0,
sweep: points[len + 4] != 0.0);
lastPoint = PdfPoint(points[len + 5], points[len + 6]);
len += 7;
}
break;
case 'Z': // close path
case 'z': // close path
if (stroke) closePath();
break;
default:
print("Unknown path action: $action");
}
}
lastAction = action;
action = a;
points = List<double>();
}
}
/// This is used to add a polygon to the current path.
/// Used by drawPolygon(), drawPolyline() and fillPolygon() etal
///
/// @param p Array of coordinates
/// @see #drawPolygon
/// @see #drawPolyline
/// @see #fillPolygon
void _polygon(List<PdfPoint> p) {
// newPath() not needed here as moveto does it ;-)
moveTo(p[0].x, p[0].y);
for (int i = 1; i < p.length; i++) lineTo(p[i].x, p[i].y);
}
void setLineCap(PdfLineCap cap) {
buf.putString("${cap.index} J\n");
}
void setLineJoin(PdfLineCap join) {
buf.putString("${join.index} j\n");
}
void setLineWidth(double width) {
buf.putNum(width);
buf.putString(" w\n");
}
void setMiterLimit(double limit) {
buf.putNum(limit);
buf.putString(" M\n");
}
}