Skip to content

Commit fe95bc6

Browse files
author
CitizenOfRome
committed
v1.6.1: Added full canvas support
1 parent 422eb8f commit fe95bc6

7 files changed

+54
-20
lines changed

README.md

+1-4
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,4 @@ Currently this plugin supports the following options:
126126
[CC-BY](http://creativecommons.org/licenses/by/3.0/).
127127

128128
## Demo
129-
[jQuery.print/demo](http://doersguild.github.io/jQuery.print/demo/)
130-
131-
---------------------------------------
132-
Like our [work](http://doersguild.com)? [Get in touch!](mailto:[email protected])
129+
[jQuery.print/demo](http://doersguild.github.io/jQuery.print/demo/)

bower.json

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
{
22
"name": "jQuery.print",
33
"main": "dist/jQuery.print.min.js",
4-
"version": "1.6.0",
4+
"version": "1.6.1",
55
"homepage": "https://doersguild.github.io/jQuery.print/",
6-
"authors": [
7-
"Sathvik P <[email protected]>"
8-
],
96
"description": "Easy to use, Element Printing Plugin for jQuery, for printing specific parts of a page",
107
"keywords": [
118
"print",

demo/index.html

+15-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,13 @@
2020
.b {
2121
color: #aaa;
2222
}
23+
#canvasExample {
24+
height: 5em;
25+
max-width: 100%;
26+
border: 0.2em solid #777;
27+
display: block;
28+
margin-bottom: 1em;
29+
}
2330
</style>
2431
<!--[if lt IE 9]>
2532
<script src="js/vendor/html5-3.6-respond-1.1.0.min.js"></script>
@@ -46,6 +53,8 @@ <h3>Element 2</h3>
4653
<p>
4754
Some other random text.
4855
</p>
56+
Canvas:
57+
<canvas id="canvasExample"></canvas>
4958
<button class="print-link no-print">
5059
Print this ($.print("#ele2")) and skip the button (.no-print)
5160
</button>
@@ -104,6 +113,12 @@ <h3 class='avoid-this'>Element 4</h3>
104113
<script type='text/javascript'>
105114
//<![CDATA[
106115
jQuery(function($) { 'use strict';
116+
try {
117+
var original = document.getElementById('canvasExample');
118+
original.getContext('2d').fillRect(20, 20, 120, 120);
119+
} catch (err) {
120+
console.warn(err)
121+
}
107122
$("#ele2").find('.print-link').on('click', function() {
108123
//Print ele2 with default options
109124
$.print("#ele2");
@@ -129,7 +144,6 @@ <h3 class='avoid-this'>Element 4</h3>
129144
deferred: $.Deferred().done(function() { console.log('Printing done', arguments); })
130145
});
131146
});
132-
// Fork https://github.com/sathvikp/jQuery.print for the full list of options
133147
});
134148
//]]>
135149
</script>

dist/jQuery.print.min.js

+2-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

jQuery.print.js

+26-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/* @license
2-
* jQuery.print, version 1.6.0
3-
* (c) Sathvik Ponangi, Doers' Guild
2+
* jQuery.print, version 1.6.1
43
* Licence: CC-By (http://creativecommons.org/licenses/by/3.0/)
54
*--------------------------------------------------------------------------*/
65
(function ($) {
@@ -16,7 +15,9 @@
1615
$resultTextareas = $result.find('textarea').add($result.filter('textarea')),
1716
$mySelects = $elmToClone.find('select').add($elmToClone.filter('select')),
1817
$resultSelects = $result.find('select').add($result.filter('select')),
19-
i, l, j, m;
18+
$myCanvas = $elmToClone.find('canvas').add($elmToClone.filter('canvas')),
19+
$resultCanvas = $result.find('canvas').add($result.filter('canvas')),
20+
i, l, j, m, myCanvasContext;
2021

2122
for (i = 0, l = $myTextareas.length; i < l; ++i) {
2223
$($resultTextareas[i]).val($($myTextareas[i]).val());
@@ -28,6 +29,14 @@
2829
}
2930
}
3031
}
32+
for (i = 0, l = $myCanvas.length; i < l; ++i) {
33+
// https://stackoverflow.com/a/41242597
34+
myCanvasContext = $myCanvas[i].getContext('2d');
35+
if(myCanvasContext) {
36+
$resultCanvas[i].getContext('2d').drawImage($myCanvas[i], 0,0);
37+
$($resultCanvas[i]).attr("data-jquery-print", myCanvasContext.canvas.toDataURL());
38+
}
39+
}
3140
return $result;
3241
}
3342

@@ -53,6 +62,19 @@
5362
wdoc.write(options.doctype);
5463
}
5564
wdoc.write(content);
65+
try {
66+
var canvas = wdoc.querySelectorAll('canvas');
67+
for(var i = 0; i < canvas.length; i++) {
68+
var ctx = canvas[i].getContext("2d");
69+
var image = new Image();
70+
image.onload = function() {
71+
ctx.drawImage(image, 0, 0);
72+
};
73+
image.src = canvas[i].getAttribute("data-jquery-print");
74+
}
75+
} catch (err) {
76+
console.warn(err);
77+
}
5678
wdoc.close();
5779
var printed = false,
5880
callPrint = function () {
@@ -205,7 +227,7 @@
205227
$styles = $.merge($styles, $('<link rel="stylesheet" href="' + options.stylesheet + '">'));
206228
}
207229
// Create a copy of the element to print
208-
var copy = jQueryCloneWithSelectAndTextAreaValues($this);
230+
var copy = jQueryCloneWithSelectAndTextAreaValues($this, true, true);
209231
// Wrap it in a span to get the HTML markup string
210232
copy = $("<span/>")
211233
.append(copy);

package.json

+1-4
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,8 @@
22
"name": "jQuery.print",
33
"filename": "jQuery.print.min.js",
44
"main": "jQuery.print.js",
5-
"version": "1.6.0",
5+
"version": "1.6.1",
66
"homepage": "https://doersguild.github.io/jQuery.print/",
7-
"authors": [
8-
"Sathvik P <[email protected]>"
9-
],
107
"description": "Easy to use, Element Printing Plugin for jQuery, for printing specific parts of a page",
118
"keywords": [
129
"print",

yarn.lock

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2+
# yarn lockfile v1
3+
4+
5+
jquery@>=1.7.2:
6+
version "3.6.0"
7+
resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.6.0.tgz#c72a09f15c1bdce142f49dbf1170bdf8adac2470"
8+
integrity sha512-JVzAR/AjBvVt2BmYhxRCSYysDsPcssdmTFnzyLEts9qNwmjmu4JTAMYubEfwVOSwpQ1I1sKKFcxhZCI2buerfw==

0 commit comments

Comments
 (0)