-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature/add rgba array support (#3124)
Co-authored-by: Antti Palola <[email protected]> Co-authored-by: Lukas Hollaender <[email protected]>
- Loading branch information
1 parent
54a0ce9
commit b6ed102
Showing
9 changed files
with
245 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
/** | ||
* @license | ||
* | ||
* Copyright (c) 2021 Antti Palola, https://github.com/Pantura | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining | ||
* a copy of this software and associated documentation files (the | ||
* "Software"), to deal in the Software without restriction, including | ||
* without limitation the rights to use, copy, modify, merge, publish, | ||
* distribute, sublicense, and/or sell copies of the Software, and to | ||
* permit persons to whom the Software is furnished to do so, subject to | ||
* the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be | ||
* included in all copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | ||
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | ||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND | ||
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE | ||
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION | ||
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION | ||
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
* ==================================================================== | ||
*/ | ||
|
||
import { jsPDF } from "../jspdf.js"; | ||
|
||
/** | ||
* jsPDF RGBA array PlugIn | ||
* @name rgba_support | ||
* @module | ||
*/ | ||
(function(jsPDFAPI) { | ||
"use strict"; | ||
|
||
/** | ||
* @name processRGBA | ||
* @function | ||
* | ||
* Process RGBA Array. This is a one-dimension array with pixel data [red, green, blue, alpha, red, green, ...]. | ||
* RGBA array data can be obtained from DOM canvas getImageData. | ||
* @ignore | ||
*/ | ||
jsPDFAPI.processRGBA = function(imageData, index, alias) { | ||
"use strict"; | ||
|
||
var imagePixels = imageData.data; | ||
var length = imagePixels.length; | ||
// jsPDF takes alpha data separately so extract that. | ||
var rgbOut = new Uint8Array((length / 4) * 3); | ||
var alphaOut = new Uint8Array(length / 4); | ||
var outIndex = 0; | ||
var alphaIndex = 0; | ||
|
||
for (var i = 0; i < length; i += 4) { | ||
var r = imagePixels[i]; | ||
var g = imagePixels[i + 1]; | ||
var b = imagePixels[i + 2]; | ||
var alpha = imagePixels[i + 3]; | ||
rgbOut[outIndex++] = r; | ||
rgbOut[outIndex++] = g; | ||
rgbOut[outIndex++] = b; | ||
alphaOut[alphaIndex++] = alpha; | ||
} | ||
|
||
var rgbData = this.__addimage__.arrayBufferToBinaryString(rgbOut); | ||
var alphaData = this.__addimage__.arrayBufferToBinaryString(alphaOut); | ||
|
||
return { | ||
alpha: alphaData, | ||
data: rgbData, | ||
index: index, | ||
alias: alias, | ||
colorSpace: "DeviceRGB", | ||
bitsPerComponent: 8, | ||
width: imageData.width, | ||
height: imageData.height | ||
}; | ||
}; | ||
})(jsPDF.API); |
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
/* global jsPDF */ | ||
/** | ||
* Standard spec tests | ||
*/ | ||
|
||
describe("Module: RGBASupport", () => { | ||
beforeAll(loadGlobals); | ||
it("black pixel", () => { | ||
var blackpixel = new Uint8ClampedArray([0, 0, 0, 255]); | ||
var blackpixelData = { | ||
data: blackpixel, | ||
width: 1, | ||
height: 1 | ||
}; | ||
|
||
const doc = new jsPDF({ | ||
orientation: "p", | ||
unit: "pt", | ||
format: "a4", | ||
floatPrecision: 2 | ||
}); | ||
doc.addImage(blackpixelData, "RGBA", 15, 40, 1, 1); | ||
|
||
comparePdf(doc.output(), "blackpixel_rgba.pdf", "addimage"); | ||
}); | ||
|
||
it("without format", () => { | ||
var blackpixel = new Uint8ClampedArray([0, 0, 0, 255]); | ||
var blackpixelData = { | ||
data: blackpixel, | ||
width: 1, | ||
height: 1 | ||
}; | ||
|
||
const doc = new jsPDF({ | ||
orientation: "p", | ||
unit: "pt", | ||
format: "a4", | ||
floatPrecision: 2 | ||
}); | ||
doc.addImage(blackpixelData, "RGBA", 15, 40, 1, 1); | ||
|
||
comparePdf(doc.output(), "blackpixel_rgba.pdf", "addimage"); | ||
}); | ||
|
||
if ( | ||
(typeof isNode === "undefined" || !isNode) && | ||
navigator.userAgent.indexOf("Chrome") >= 0 | ||
) { | ||
it("from canvas", () => { | ||
const c = document.createElement("canvas"); | ||
const ctx = c.getContext("2d"); | ||
ctx.fillStyle = "#FF6600"; | ||
ctx.fillRect(0, 0, 150, 75); | ||
const dataFromCanvas = ctx.getImageData(0, 0, 150, 75); | ||
const doc = new jsPDF({ | ||
orientation: "p", | ||
unit: "pt", | ||
format: "a4", | ||
floatPrecision: 2 | ||
}); | ||
doc.addImage( | ||
dataFromCanvas, | ||
"RGBA", | ||
100, | ||
200, | ||
280, | ||
210, | ||
undefined, | ||
undefined | ||
); | ||
|
||
comparePdf(doc.output(), "rgba.pdf", "addimage"); | ||
}); | ||
|
||
it("with alpha", () => { | ||
const c = document.createElement("canvas"); | ||
const ctx = c.getContext("2d"); | ||
ctx.fillStyle = "#FFFFFF"; | ||
ctx.fillRect(0, 0, 150, 60); | ||
ctx.fillStyle = "#AA00FF77"; | ||
ctx.fillRect(10, 10, 130, 40); | ||
const dataFromCanvas = ctx.getImageData(0, 0, 150, 60); | ||
|
||
const doc = new jsPDF({ | ||
orientation: "p", | ||
unit: "px", | ||
format: "a4", | ||
floatPrecision: 2 | ||
}); | ||
doc.addImage(dataFromCanvas, 10, 10, 150, 60); | ||
|
||
comparePdf(doc.output(), "rgba_alpha.pdf", "addimage"); | ||
}); | ||
} | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters