Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add context2d setLineDash() and lineDashOffset. #3169

Merged
merged 2 commits into from
May 28, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/jspdf.js
Original file line number Diff line number Diff line change
Expand Up @@ -2001,7 +2001,7 @@ function jsPDF(options) {
font: font,
out: out,
newObject: newObject,
putStream: putStream,
putStream: putStream
});

if (font.isAlreadyPutted !== true) {
Expand Down
3 changes: 2 additions & 1 deletion src/libs/FileSaver.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@ var saveAs =
/* noop */
}
: // Use download attribute first if possible (#193 Lumia mobile) unless this is a native app
(typeof HTMLAnchorElement !== "undefined" && "download" in HTMLAnchorElement.prototype)
typeof HTMLAnchorElement !== "undefined" &&
"download" in HTMLAnchorElement.prototype
? function saveAs(blob, name, opts) {
var URL = _global.URL || _global.webkitURL;
var a = document.createElement("a");
Expand Down
7 changes: 5 additions & 2 deletions src/libs/pdfname.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,11 @@
*/
function toPDFName(str) {
// eslint-disable-next-line no-control-regex
if(/[^\u0000-\u00ff]/.test(str)){ // non ascii string
throw new Error('Invalid PDF Name Object: ' + str + ', Only accept ASCII characters.');
if (/[^\u0000-\u00ff]/.test(str)) {
// non ascii string
throw new Error(
"Invalid PDF Name Object: " + str + ", Only accept ASCII characters."
);
}
var result = "",
strLength = str.length;
Expand Down
5 changes: 4 additions & 1 deletion src/modules/cell.js
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,10 @@ import { jsPDF } from "../jspdf.js";
});
}

if (autoSize || (Array.isArray(headers) && typeof headers[0] === "string")) {
if (
autoSize ||
(Array.isArray(headers) && typeof headers[0] === "string")
) {
var headerName;
for (i = 0; i < headerNames.length; i += 1) {
headerName = headerNames[i];
Expand Down
85 changes: 85 additions & 0 deletions src/modules/context2d.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ import {
this.currentPoint = ctx.currentPoint || new Point();
this.miterLimit = ctx.miterLimit || 10.0;
this.lastPoint = ctx.lastPoint || new Point();
this.lineDashOffset = ctx.lineDashOffset || 0.0;
this.lineDash = ctx.lineDash || [];

this.ignoreClearRect =
typeof ctx.ignoreClearRect === "boolean" ? ctx.ignoreClearRect : true;
Expand Down Expand Up @@ -641,6 +643,33 @@ import {
}
});

/**
* A float specifying the amount of the line dash offset. The default value is 0.0.
*
* @name lineDashOffset
* @default 0.0
*/
Object.defineProperty(this, "lineDashOffset", {
get: function() {
return this.ctx.lineDashOffset;
},
set: function(value) {
this.ctx.lineDashOffset = value;
setLineDash.call(this);
}
});

// Not HTML API
Object.defineProperty(this, "lineDash", {
flyskyko marked this conversation as resolved.
Show resolved Hide resolved
get: function() {
return this.ctx.lineDash;
},
set: function(value) {
this.ctx.lineDash = value;
setLineDash.call(this);
}
});

// Not HTML API
Object.defineProperty(this, "ignoreClearRect", {
get: function() {
Expand All @@ -652,6 +681,32 @@ import {
});
};

/**
* Sets the line dash pattern used when stroking lines.
* @name setLineDash
* @function
* @description It uses an array of values that specify alternating lengths of lines and gaps which describe the pattern.
*/
Context2D.prototype.setLineDash = function(dashArray) {
this.lineDash = dashArray;
};

/**
* gets the current line dash pattern.
* @name getLineDash
* @function
* @returns {Array} An Array of numbers that specify distances to alternately draw a line and a gap (in coordinate space units). If the number, when setting the elements, is odd, the elements of the array get copied and concatenated. For example, setting the line dash to [5, 15, 25] will result in getting back [5, 15, 25, 5, 15, 25].
*/
Context2D.prototype.getLineDash = function() {
if (this.lineDash.length % 2) {
// https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/getLineDash#return_value
return this.lineDash.concat(this.lineDash);
} else {
// The copied value is returned to prevent contamination from outside.
return this.lineDash.slice();
}
};

Context2D.prototype.fill = function() {
pathPreProcess.call(this, "fill", false);
};
Expand Down Expand Up @@ -1105,6 +1160,8 @@ import {
this.lineCap = this.ctx.lineCap;
this.lineWidth = this.ctx.lineWidth;
this.lineJoin = this.ctx.lineJoin;
this.lineDash = this.ctx.lineDash;
this.lineDashOffset = this.ctx.lineDashOffset;
}
};

Expand Down Expand Up @@ -2383,4 +2440,32 @@ import {
Math.round(maxy - miny)
);
};

var getPrevLineDashValue = function(lineDash, lineDashOffset) {
return JSON.stringify({
lineDash: lineDash,
lineDashOffset: lineDashOffset
});
};

var setLineDash = function() {
// Avoid unnecessary line dash declarations.
if (
!this.prevLineDash &&
!this.ctx.lineDash.length &&
!this.ctx.lineDashOffset
) {
return;
}

// Avoid unnecessary line dash declarations.
const nextLineDash = getPrevLineDashValue(
this.ctx.lineDash,
this.ctx.lineDashOffset
);
if (this.prevLineDash !== nextLineDash) {
this.pdf.setLineDash(this.ctx.lineDash, this.ctx.lineDashOffset);
this.prevLineDash = nextLineDash;
}
};
})(jsPDF.API);
Binary file added test/reference/lineDash.pdf
Binary file not shown.
93 changes: 93 additions & 0 deletions test/specs/context2d.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -485,6 +485,99 @@ describe("Context2D: standard tests", () => {
comparePdf(doc.output(), "moveTo_lineTo_stroke_fill.pdf", "context2d");
});

it("context2d: setLineDash(), lineDashOffset", () => {
var doc = new jsPDF({
orientation: "p",
unit: "pt",
format: "a4",
floatPrecision: 2
});
var ctx = doc.context2d;

var y = 20;
var pad = 20;

ctx.lineWidth = 5;
ctx.beginPath();
ctx.moveTo(20, y);
ctx.lineTo(200, y);
ctx.stroke();
y += pad;
ctx.save();
ctx.beginPath();
ctx.setLineDash([10, 20]);
ctx.lineDashOffset = 10;
ctx.moveTo(20, y);
ctx.lineTo(200, y);
ctx.stroke();
y += pad;
ctx.beginPath();
ctx.setLineDash([]);
ctx.lineDashOffset = 0;
ctx.moveTo(20, y);
ctx.lineTo(200, y);
ctx.stroke();
y += pad;
ctx.beginPath();
ctx.setLineDash([10, 20]);
ctx.lineDashOffset = 10;
ctx.moveTo(20, y);
ctx.lineTo(200, y);
ctx.stroke();
y += pad;
ctx.save();
ctx.beginPath();
ctx.setLineDash([]);
ctx.lineDashOffset = 0;
ctx.moveTo(20, y);
ctx.lineTo(200, y);
ctx.stroke();
y += pad;
ctx.restore();
ctx.beginPath();
ctx.moveTo(20, y);
ctx.lineTo(200, y);
ctx.stroke();
y += pad;
ctx.save();
ctx.beginPath();
ctx.moveTo(20, y);
ctx.lineTo(200, y);
ctx.stroke();
y += pad;
ctx.restore();
ctx.beginPath();
ctx.moveTo(20, y);
ctx.lineTo(200, y);
ctx.stroke();
y += pad;
ctx.restore();
ctx.beginPath();
ctx.moveTo(20, y);
ctx.lineTo(200, y);
ctx.stroke();

comparePdf(doc.output(), "lineDash.pdf", "context2d");
});

it("context2d: getLineDash()", () => {
var doc = new jsPDF({
orientation: "p",
unit: "pt",
format: "a4",
floatPrecision: 2
});
var ctx = doc.context2d;

expect(ctx.getLineDash()).toEqual([]);

ctx.setLineDash([1, 2]);
expect(ctx.getLineDash()).toEqual([1, 2]);

ctx.setLineDash([1, 2, 3]);
expect(ctx.getLineDash()).toEqual([1, 2, 3, 1, 2, 3]);
});

it("context2d: textBaseline", () => {
var doc = new jsPDF({
orientation: "p",
Expand Down