forked from parallax/jsPDF
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugins_svg.js.html
More file actions
143 lines (121 loc) · 5.14 KB
/
Copy pathplugins_svg.js.html
File metadata and controls
143 lines (121 loc) · 5.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>plugins/svg.js - Documentation</title>
<script src="scripts/prettify/prettify.js"></script>
<script src="scripts/prettify/lang-css.js"></script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc.css">
</head>
<body>
<input type="checkbox" id="nav-trigger" class="nav-trigger" />
<label for="nav-trigger" class="navicon-button x">
<div class="navicon"></div>
</label>
<label for="nav-trigger" class="overlay"></label>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="jsPDF.html">jsPDF</a></li></ul><h3>Global</h3><ul><li><a href="global.html#addFont">addFont</a></li><li><a href="global.html#addHTML">addHTML</a></li><li><a href="global.html#addMetadata">addMetadata</a></li><li><a href="global.html#addPage">addPage</a></li><li><a href="global.html#autoPrint">autoPrint</a></li><li><a href="global.html#CapJoinStyles">CapJoinStyles</a></li><li><a href="global.html#circle">circle</a></li><li><a href="global.html#ellipse">ellipse</a></li><li><a href="global.html#getFontList">getFontList</a></li><li><a href="global.html#lines">lines</a></li><li><a href="global.html#lstext">lstext</a></li><li><a href="global.html#output">output</a></li><li><a href="global.html#rect">rect</a></li><li><a href="global.html#roundedRect">roundedRect</a></li><li><a href="global.html#save">save</a></li><li><a href="global.html#setDisplayMode">setDisplayMode</a></li><li><a href="global.html#setDrawColor">setDrawColor</a></li><li><a href="global.html#setFillColor">setFillColor</a></li><li><a href="global.html#setFont">setFont</a></li><li><a href="global.html#setFontSize">setFontSize</a></li><li><a href="global.html#setFontStyle">setFontStyle</a></li><li><a href="global.html#setLineCap">setLineCap</a></li><li><a href="global.html#setLineJoin">setLineJoin</a></li><li><a href="global.html#setLineWidth">setLineWidth</a></li><li><a href="global.html#setPage">setPage</a></li><li><a href="global.html#setProperties">setProperties</a></li><li><a href="global.html#setTextColor">setTextColor</a></li><li><a href="global.html#svg">svg</a></li><li><a href="global.html#text">text</a></li><li><a href="global.html#triangle">triangle</a></li></ul>
</nav>
<div id="main">
<h1 class="page-title">plugins/svg.js</h1>
<section>
<article>
<pre class="prettyprint source linenums"><code>/** @preserve
jsPDF svg plugin
Copyright (c) 2016 James Hall
MIT license.
*/
;(function (jsPDFAPI) {
'use strict'
// IE does not support outerHTML on SVGElement
if (typeof SVGElement === 'object' && !SVGElement.prototype.outerHTML) {
Object.defineProperty(SVGElement.prototype, 'outerHTML', {
get: function () {
var $node
var $temp
$temp = document.createElement('div')
$node = this.cloneNode(true)
$temp.appendChild($node)
return $temp.innerHTML
},
enumerable: false,
configurable: true
})
}
/**
* Render an SVG to the document.
*
* @param {Mixed} svg Pass either a DOM object, or a string containing
* the SVG content itself.
* @param {Object} options Options are passed in as an object:
* * x - The x position
* * y - The y position
* @return {jsPDF}
* @function
* @name svg
* @example
* var doc = new jsPDF()
* doc.svg(document.querySelector('.svg'))
*
* // or to draw at a particular point on the page
* doc.svg(document.querySelector('.svg'), { x: 10, y: 10 })
*
* // You can also draw SVG content directly
* doc.svg(`<svg width="120" height="120" viewBox="0 0 120 120"
* xmlns="http://www.w3.org/2000/svg">
* <rect x="0" y="0" width="100" height="100"/>
* </svg>`, {
* x: 20,
* y: 20
* })
*/
jsPDFAPI.svg = function (svg, options) {
/**
* If it's a string, then treat it as raw SVG content
*/
var svgContent
if (typeof svg === 'string') {
svgContent = svg
}
if (typeof svg === 'object') {
svgContent = svg.outerHTML
}
if (typeof options === 'undefined') {
options = {}
}
if (options.x === undefined) {
options.x = 0
}
if (options.y === undefined) {
options.y = 0
}
var c = this.canvas
var ctx = c.getContext('2d')
ctx.ignoreClearRect = true
canvg(c, svgContent, {
ignoreMouse: true,
ignoreAnimation: true,
ignoreDimensions: true,
useCORS: true,
offsetX: options.x,
offsetY: options.y
})
return this
}
})(jsPDF.API)
</code></pre>
</article>
</section>
</div>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.4.2</a> on Sun Oct 09 2016 21:08:49 GMT+0100 (BST) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
</footer>
<script>prettyPrint();</script>
<script src="scripts/linenumber.js"></script>
</body>
</html>