|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import { jsPDF } from "../jspdf.js"; |
|
import { atob, btoa } from "../libs/AtobBtoa.js"; |
|
|
|
(function(jsPDFAPI) { |
|
"use strict"; |
|
|
|
var namespace = "addImage_"; |
|
jsPDFAPI.__addimage__ = {}; |
|
|
|
var UNKNOWN = "UNKNOWN"; |
|
|
|
var imageFileTypeHeaders = { |
|
PNG: [[0x89, 0x50, 0x4e, 0x47]], |
|
TIFF: [ |
|
[0x4d, 0x4d, 0x00, 0x2a], |
|
[0x49, 0x49, 0x2a, 0x00] |
|
], |
|
JPEG: [ |
|
[ |
|
0xff, |
|
0xd8, |
|
0xff, |
|
0xe0, |
|
undefined, |
|
undefined, |
|
0x4a, |
|
0x46, |
|
0x49, |
|
0x46, |
|
0x00 |
|
], |
|
[ |
|
0xff, |
|
0xd8, |
|
0xff, |
|
0xe1, |
|
undefined, |
|
undefined, |
|
0x45, |
|
0x78, |
|
0x69, |
|
0x66, |
|
0x00, |
|
0x00 |
|
], |
|
[0xff, 0xd8, 0xff, 0xdb], |
|
[0xff, 0xd8, 0xff, 0xee] |
|
], |
|
JPEG2000: [[0x00, 0x00, 0x00, 0x0c, 0x6a, 0x50, 0x20, 0x20]], |
|
GIF87a: [[0x47, 0x49, 0x46, 0x38, 0x37, 0x61]], |
|
GIF89a: [[0x47, 0x49, 0x46, 0x38, 0x39, 0x61]], |
|
WEBP: [ |
|
[ |
|
0x52, |
|
0x49, |
|
0x46, |
|
0x46, |
|
undefined, |
|
undefined, |
|
undefined, |
|
undefined, |
|
0x57, |
|
0x45, |
|
0x42, |
|
0x50 |
|
] |
|
], |
|
BMP: [ |
|
[0x42, 0x4d], |
|
[0x42, 0x41], |
|
[0x43, 0x49], |
|
[0x43, 0x50], |
|
[0x49, 0x43], |
|
[0x50, 0x54] |
|
] |
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var getImageFileTypeByImageData = (jsPDFAPI.__addimage__.getImageFileTypeByImageData = function( |
|
imageData, |
|
fallbackFormat |
|
) { |
|
fallbackFormat = fallbackFormat || UNKNOWN; |
|
var i; |
|
var j; |
|
var result = UNKNOWN; |
|
var headerSchemata; |
|
var compareResult; |
|
var fileType; |
|
|
|
if (isArrayBufferView(imageData)) { |
|
for (fileType in imageFileTypeHeaders) { |
|
headerSchemata = imageFileTypeHeaders[fileType]; |
|
for (i = 0; i < headerSchemata.length; i += 1) { |
|
compareResult = true; |
|
for (j = 0; j < headerSchemata[i].length; j += 1) { |
|
if (headerSchemata[i][j] === undefined) { |
|
continue; |
|
} |
|
if (headerSchemata[i][j] !== imageData[j]) { |
|
compareResult = false; |
|
break; |
|
} |
|
} |
|
if (compareResult === true) { |
|
result = fileType; |
|
break; |
|
} |
|
} |
|
} |
|
} else { |
|
for (fileType in imageFileTypeHeaders) { |
|
headerSchemata = imageFileTypeHeaders[fileType]; |
|
for (i = 0; i < headerSchemata.length; i += 1) { |
|
compareResult = true; |
|
for (j = 0; j < headerSchemata[i].length; j += 1) { |
|
if (headerSchemata[i][j] === undefined) { |
|
continue; |
|
} |
|
if (headerSchemata[i][j] !== imageData.charCodeAt(j)) { |
|
compareResult = false; |
|
break; |
|
} |
|
} |
|
if (compareResult === true) { |
|
result = fileType; |
|
break; |
|
} |
|
} |
|
} |
|
} |
|
|
|
if (result === UNKNOWN && fallbackFormat !== UNKNOWN) { |
|
result = fallbackFormat; |
|
} |
|
return result; |
|
}); |
|
|
|
|
|
var putImage = function(image) { |
|
var out = this.internal.write; |
|
var putStream = this.internal.putStream; |
|
var getFilters = this.internal.getFilters; |
|
|
|
var filter = getFilters(); |
|
while (filter.indexOf("FlateEncode") !== -1) { |
|
filter.splice(filter.indexOf("FlateEncode"), 1); |
|
} |
|
|
|
image.objectId = this.internal.newObject(); |
|
|
|
var additionalKeyValues = []; |
|
additionalKeyValues.push({ key: "Type", value: "/XObject" }); |
|
additionalKeyValues.push({ key: "Subtype", value: "/Image" }); |
|
additionalKeyValues.push({ key: "Width", value: image.width }); |
|
additionalKeyValues.push({ key: "Height", value: image.height }); |
|
|
|
if (image.colorSpace === color_spaces.INDEXED) { |
|
additionalKeyValues.push({ |
|
key: "ColorSpace", |
|
value: |
|
"[/Indexed /DeviceRGB " + |
|
|
|
(image.palette.length / 3 - 1) + |
|
" " + |
|
("sMask" in image && typeof image.sMask !== "undefined" |
|
? image.objectId + 2 |
|
: image.objectId + 1) + |
|
" 0 R]" |
|
}); |
|
} else { |
|
additionalKeyValues.push({ |
|
key: "ColorSpace", |
|
value: "/" + image.colorSpace |
|
}); |
|
if (image.colorSpace === color_spaces.DEVICE_CMYK) { |
|
additionalKeyValues.push({ key: "Decode", value: "[1 0 1 0 1 0 1 0]" }); |
|
} |
|
} |
|
additionalKeyValues.push({ |
|
key: "BitsPerComponent", |
|
value: image.bitsPerComponent |
|
}); |
|
if ( |
|
"decodeParameters" in image && |
|
typeof image.decodeParameters !== "undefined" |
|
) { |
|
additionalKeyValues.push({ |
|
key: "DecodeParms", |
|
value: "<<" + image.decodeParameters + ">>" |
|
}); |
|
} |
|
if ("transparency" in image && Array.isArray(image.transparency)) { |
|
var transparency = "", |
|
i = 0, |
|
len = image.transparency.length; |
|
for (; i < len; i++) |
|
transparency += |
|
image.transparency[i] + " " + image.transparency[i] + " "; |
|
|
|
additionalKeyValues.push({ |
|
key: "Mask", |
|
value: "[" + transparency + "]" |
|
}); |
|
} |
|
if (typeof image.sMask !== "undefined") { |
|
additionalKeyValues.push({ |
|
key: "SMask", |
|
value: image.objectId + 1 + " 0 R" |
|
}); |
|
} |
|
|
|
var alreadyAppliedFilters = |
|
typeof image.filter !== "undefined" ? ["/" + image.filter] : undefined; |
|
|
|
putStream({ |
|
data: image.data, |
|
additionalKeyValues: additionalKeyValues, |
|
alreadyAppliedFilters: alreadyAppliedFilters, |
|
objectId: image.objectId |
|
}); |
|
|
|
out("endobj"); |
|
|
|
|
|
if ("sMask" in image && typeof image.sMask !== "undefined") { |
|
var decodeParameters = |
|
"/Predictor " + |
|
image.predictor + |
|
" /Colors 1 /BitsPerComponent " + |
|
image.bitsPerComponent + |
|
" /Columns " + |
|
image.width; |
|
var sMask = { |
|
width: image.width, |
|
height: image.height, |
|
colorSpace: "DeviceGray", |
|
bitsPerComponent: image.bitsPerComponent, |
|
decodeParameters: decodeParameters, |
|
data: image.sMask |
|
}; |
|
if ("filter" in image) { |
|
sMask.filter = image.filter; |
|
} |
|
putImage.call(this, sMask); |
|
} |
|
|
|
|
|
if (image.colorSpace === color_spaces.INDEXED) { |
|
var objId = this.internal.newObject(); |
|
|
|
|
|
putStream({ |
|
data: arrayBufferToBinaryString(new Uint8Array(image.palette)), |
|
objectId: objId |
|
}); |
|
out("endobj"); |
|
} |
|
}; |
|
var putResourcesCallback = function() { |
|
var images = this.internal.collections[namespace + "images"]; |
|
for (var i in images) { |
|
putImage.call(this, images[i]); |
|
} |
|
}; |
|
var putXObjectsDictCallback = function() { |
|
var images = this.internal.collections[namespace + "images"], |
|
out = this.internal.write, |
|
image; |
|
for (var i in images) { |
|
image = images[i]; |
|
out("/I" + image.index, image.objectId, "0", "R"); |
|
} |
|
}; |
|
|
|
var checkCompressValue = function(value) { |
|
if (value && typeof value === "string") value = value.toUpperCase(); |
|
return value in jsPDFAPI.image_compression ? value : image_compression.NONE; |
|
}; |
|
|
|
var initialize = function() { |
|
if (!this.internal.collections[namespace + "images"]) { |
|
this.internal.collections[namespace + "images"] = {}; |
|
this.internal.events.subscribe("putResources", putResourcesCallback); |
|
this.internal.events.subscribe("putXobjectDict", putXObjectsDictCallback); |
|
} |
|
}; |
|
|
|
var getImages = function() { |
|
var images = this.internal.collections[namespace + "images"]; |
|
initialize.call(this); |
|
return images; |
|
}; |
|
var getImageIndex = function() { |
|
return Object.keys(this.internal.collections[namespace + "images"]).length; |
|
}; |
|
var notDefined = function(value) { |
|
return typeof value === "undefined" || value === null || value.length === 0; |
|
}; |
|
var generateAliasFromImageData = function(imageData) { |
|
if (typeof imageData === "string" || isArrayBufferView(imageData)) { |
|
return sHashCode(imageData); |
|
} |
|
|
|
return null; |
|
}; |
|
|
|
var isImageTypeSupported = function(type) { |
|
return typeof jsPDFAPI["process" + type.toUpperCase()] === "function"; |
|
}; |
|
|
|
var isDOMElement = function(object) { |
|
return typeof object === "object" && object.nodeType === 1; |
|
}; |
|
|
|
var getImageDataFromElement = function(element, format) { |
|
|
|
if (element.nodeName === "IMG" && element.hasAttribute("src")) { |
|
var src = "" + element.getAttribute("src"); |
|
|
|
|
|
if (src.indexOf("data:image/") === 0) { |
|
return atob( |
|
unescape(src) |
|
.split("base64,") |
|
.pop() |
|
); |
|
} |
|
|
|
|
|
var tmpImageData = jsPDFAPI.loadFile(src, true); |
|
if (tmpImageData !== undefined) { |
|
return tmpImageData; |
|
} |
|
} |
|
|
|
if (element.nodeName === "CANVAS") { |
|
var mimeType; |
|
switch (format) { |
|
case "PNG": |
|
mimeType = "image/png"; |
|
break; |
|
case "WEBP": |
|
mimeType = "image/webp"; |
|
break; |
|
case "JPEG": |
|
case "JPG": |
|
default: |
|
mimeType = "image/jpeg"; |
|
break; |
|
} |
|
return atob( |
|
element |
|
.toDataURL(mimeType, 1.0) |
|
.split("base64,") |
|
.pop() |
|
); |
|
} |
|
}; |
|
|
|
var checkImagesForAlias = function(alias) { |
|
var images = this.internal.collections[namespace + "images"]; |
|
if (images) { |
|
for (var e in images) { |
|
if (alias === images[e].alias) { |
|
return images[e]; |
|
} |
|
} |
|
} |
|
}; |
|
|
|
var determineWidthAndHeight = function(width, height, image) { |
|
if (!width && !height) { |
|
width = -96; |
|
height = -96; |
|
} |
|
if (width < 0) { |
|
width = (-1 * image.width * 72) / width / this.internal.scaleFactor; |
|
} |
|
if (height < 0) { |
|
height = (-1 * image.height * 72) / height / this.internal.scaleFactor; |
|
} |
|
if (width === 0) { |
|
width = (height * image.width) / image.height; |
|
} |
|
if (height === 0) { |
|
height = (width * image.height) / image.width; |
|
} |
|
|
|
return [width, height]; |
|
}; |
|
|
|
var writeImageToPDF = function(x, y, width, height, image, rotation) { |
|
var dims = determineWidthAndHeight.call(this, width, height, image), |
|
coord = this.internal.getCoordinateString, |
|
vcoord = this.internal.getVerticalCoordinateString; |
|
|
|
var images = getImages.call(this); |
|
|
|
width = dims[0]; |
|
height = dims[1]; |
|
images[image.index] = image; |
|
|
|
if (rotation) { |
|
rotation *= Math.PI / 180; |
|
var c = Math.cos(rotation); |
|
var s = Math.sin(rotation); |
|
|
|
var f4 = function(number) { |
|
return number.toFixed(4); |
|
}; |
|
var rotationTransformationMatrix = [ |
|
f4(c), |
|
f4(s), |
|
f4(s * -1), |
|
f4(c), |
|
0, |
|
0, |
|
"cm" |
|
]; |
|
} |
|
this.internal.write("q"); |
|
if (rotation) { |
|
this.internal.write( |
|
[1, "0", "0", 1, coord(x), vcoord(y + height), "cm"].join(" ") |
|
); |
|
this.internal.write(rotationTransformationMatrix.join(" ")); |
|
this.internal.write( |
|
[coord(width), "0", "0", coord(height), "0", "0", "cm"].join(" ") |
|
); |
|
} else { |
|
this.internal.write( |
|
[ |
|
coord(width), |
|
"0", |
|
"0", |
|
coord(height), |
|
coord(x), |
|
vcoord(y + height), |
|
"cm" |
|
].join(" ") |
|
); |
|
} |
|
|
|
if (this.isAdvancedAPI()) { |
|
|
|
this.internal.write([1, 0, 0, -1, 0, 0, "cm"].join(" ")); |
|
} |
|
|
|
this.internal.write("/I" + image.index + " Do"); |
|
this.internal.write("Q"); |
|
}; |
|
|
|
|
|
|
|
|
|
var color_spaces = (jsPDFAPI.color_spaces = { |
|
DEVICE_RGB: "DeviceRGB", |
|
DEVICE_GRAY: "DeviceGray", |
|
DEVICE_CMYK: "DeviceCMYK", |
|
CAL_GREY: "CalGray", |
|
CAL_RGB: "CalRGB", |
|
LAB: "Lab", |
|
ICC_BASED: "ICCBased", |
|
INDEXED: "Indexed", |
|
PATTERN: "Pattern", |
|
SEPARATION: "Separation", |
|
DEVICE_N: "DeviceN" |
|
}); |
|
|
|
|
|
|
|
|
|
jsPDFAPI.decode = { |
|
DCT_DECODE: "DCTDecode", |
|
FLATE_DECODE: "FlateDecode", |
|
LZW_DECODE: "LZWDecode", |
|
JPX_DECODE: "JPXDecode", |
|
JBIG2_DECODE: "JBIG2Decode", |
|
ASCII85_DECODE: "ASCII85Decode", |
|
ASCII_HEX_DECODE: "ASCIIHexDecode", |
|
RUN_LENGTH_DECODE: "RunLengthDecode", |
|
CCITT_FAX_DECODE: "CCITTFaxDecode" |
|
}; |
|
|
|
|
|
|
|
|
|
var image_compression = (jsPDFAPI.image_compression = { |
|
NONE: "NONE", |
|
FAST: "FAST", |
|
MEDIUM: "MEDIUM", |
|
SLOW: "SLOW" |
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var sHashCode = (jsPDFAPI.__addimage__.sHashCode = function(data) { |
|
var hash = 0, |
|
i, |
|
len; |
|
|
|
if (typeof data === "string") { |
|
len = data.length; |
|
for (i = 0; i < len; i++) { |
|
hash = (hash << 5) - hash + data.charCodeAt(i); |
|
hash |= 0; |
|
} |
|
} else if (isArrayBufferView(data)) { |
|
len = data.byteLength / 2; |
|
for (i = 0; i < len; i++) { |
|
hash = (hash << 5) - hash + data[i]; |
|
hash |= 0; |
|
} |
|
} |
|
return hash; |
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var validateStringAsBase64 = (jsPDFAPI.__addimage__.validateStringAsBase64 = function( |
|
possibleBase64String |
|
) { |
|
possibleBase64String = possibleBase64String || ""; |
|
possibleBase64String.toString().trim(); |
|
|
|
var result = true; |
|
|
|
if (possibleBase64String.length === 0) { |
|
result = false; |
|
} |
|
|
|
if (possibleBase64String.length % 4 !== 0) { |
|
result = false; |
|
} |
|
|
|
if ( |
|
/^[A-Za-z0-9+/]+$/.test( |
|
possibleBase64String.substr(0, possibleBase64String.length - 2) |
|
) === false |
|
) { |
|
result = false; |
|
} |
|
|
|
if ( |
|
/^[A-Za-z0-9/][A-Za-z0-9+/]|[A-Za-z0-9+/]=|==$/.test( |
|
possibleBase64String.substr(-2) |
|
) === false |
|
) { |
|
result = false; |
|
} |
|
return result; |
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var extractImageFromDataUrl = (jsPDFAPI.__addimage__.extractImageFromDataUrl = function( |
|
dataUrl |
|
) { |
|
dataUrl = dataUrl || ""; |
|
var dataUrlParts = dataUrl.split("base64,"); |
|
var result = null; |
|
|
|
if (dataUrlParts.length === 2) { |
|
|
|
|
|
|
|
var extractedInfo = /^data:(\w*\/\w*);*(charset=(?!charset=)[\w=-]*)*;*$/.exec( |
|
dataUrlParts[0] |
|
); |
|
if (Array.isArray(extractedInfo)) { |
|
result = { |
|
mimeType: extractedInfo[1], |
|
charset: extractedInfo[2], |
|
data: dataUrlParts[1] |
|
}; |
|
} |
|
} |
|
return result; |
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var supportsArrayBuffer = (jsPDFAPI.__addimage__.supportsArrayBuffer = function() { |
|
return ( |
|
typeof ArrayBuffer !== "undefined" && typeof Uint8Array !== "undefined" |
|
); |
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
jsPDFAPI.__addimage__.isArrayBuffer = function(object) { |
|
return supportsArrayBuffer() && object instanceof ArrayBuffer; |
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var isArrayBufferView = (jsPDFAPI.__addimage__.isArrayBufferView = function( |
|
object |
|
) { |
|
return ( |
|
supportsArrayBuffer() && |
|
typeof Uint32Array !== "undefined" && |
|
(object instanceof Int8Array || |
|
object instanceof Uint8Array || |
|
(typeof Uint8ClampedArray !== "undefined" && |
|
object instanceof Uint8ClampedArray) || |
|
object instanceof Int16Array || |
|
object instanceof Uint16Array || |
|
object instanceof Int32Array || |
|
object instanceof Uint32Array || |
|
object instanceof Float32Array || |
|
object instanceof Float64Array) |
|
); |
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var binaryStringToUint8Array = (jsPDFAPI.__addimage__.binaryStringToUint8Array = function( |
|
binary_string |
|
) { |
|
var len = binary_string.length; |
|
var bytes = new Uint8Array(len); |
|
for (var i = 0; i < len; i++) { |
|
bytes[i] = binary_string.charCodeAt(i); |
|
} |
|
return bytes; |
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var arrayBufferToBinaryString = (jsPDFAPI.__addimage__.arrayBufferToBinaryString = function( |
|
buffer |
|
) { |
|
try { |
|
return atob(btoa(String.fromCharCode.apply(null, buffer))); |
|
} catch (e) { |
|
if ( |
|
typeof Uint8Array !== "undefined" && |
|
typeof Uint8Array.prototype.reduce !== "undefined" |
|
) { |
|
return new Uint8Array(buffer) |
|
.reduce(function(data, byte) { |
|
return data.push(String.fromCharCode(byte)), data; |
|
}, []) |
|
.join(""); |
|
} |
|
} |
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
jsPDFAPI.addImage = function() { |
|
var imageData, format, x, y, w, h, alias, compression, rotation; |
|
|
|
imageData = arguments[0]; |
|
if (typeof arguments[1] === "number") { |
|
format = UNKNOWN; |
|
x = arguments[1]; |
|
y = arguments[2]; |
|
w = arguments[3]; |
|
h = arguments[4]; |
|
alias = arguments[5]; |
|
compression = arguments[6]; |
|
rotation = arguments[7]; |
|
} else { |
|
format = arguments[1]; |
|
x = arguments[2]; |
|
y = arguments[3]; |
|
w = arguments[4]; |
|
h = arguments[5]; |
|
alias = arguments[6]; |
|
compression = arguments[7]; |
|
rotation = arguments[8]; |
|
} |
|
|
|
if ( |
|
typeof imageData === "object" && |
|
!isDOMElement(imageData) && |
|
"imageData" in imageData |
|
) { |
|
var options = imageData; |
|
|
|
imageData = options.imageData; |
|
format = options.format || format || UNKNOWN; |
|
x = options.x || x || 0; |
|
y = options.y || y || 0; |
|
w = options.w || options.width || w; |
|
h = options.h || options.height || h; |
|
alias = options.alias || alias; |
|
compression = options.compression || compression; |
|
rotation = options.rotation || options.angle || rotation; |
|
} |
|
|
|
|
|
var filter = this.internal.getFilters(); |
|
if (compression === undefined && filter.indexOf("FlateEncode") !== -1) { |
|
compression = "SLOW"; |
|
} |
|
|
|
if (isNaN(x) || isNaN(y)) { |
|
throw new Error("Invalid coordinates passed to jsPDF.addImage"); |
|
} |
|
|
|
initialize.call(this); |
|
|
|
var image = processImageData.call( |
|
this, |
|
imageData, |
|
format, |
|
alias, |
|
compression |
|
); |
|
|
|
writeImageToPDF.call(this, x, y, w, h, image, rotation); |
|
|
|
return this; |
|
}; |
|
|
|
var processImageData = function(imageData, format, alias, compression) { |
|
var result, dataAsBinaryString; |
|
|
|
if ( |
|
typeof imageData === "string" && |
|
getImageFileTypeByImageData(imageData) === UNKNOWN |
|
) { |
|
imageData = unescape(imageData); |
|
var tmpImageData = convertBase64ToBinaryString(imageData, false); |
|
|
|
if (tmpImageData !== "") { |
|
imageData = tmpImageData; |
|
} else { |
|
tmpImageData = jsPDFAPI.loadFile(imageData, true); |
|
if (tmpImageData !== undefined) { |
|
imageData = tmpImageData; |
|
} |
|
} |
|
} |
|
|
|
if (isDOMElement(imageData)) { |
|
imageData = getImageDataFromElement(imageData, format); |
|
} |
|
|
|
format = getImageFileTypeByImageData(imageData, format); |
|
if (!isImageTypeSupported(format)) { |
|
throw new Error( |
|
"addImage does not support files of type '" + |
|
format + |
|
"', please ensure that a plugin for '" + |
|
format + |
|
"' support is added." |
|
); |
|
} |
|
|
|
|
|
|
|
if (notDefined(alias)) { |
|
alias = generateAliasFromImageData(imageData); |
|
} |
|
result = checkImagesForAlias.call(this, alias); |
|
|
|
if (!result) { |
|
if (supportsArrayBuffer()) { |
|
|
|
if (!(imageData instanceof Uint8Array)) { |
|
dataAsBinaryString = imageData; |
|
imageData = binaryStringToUint8Array(imageData); |
|
} |
|
} |
|
|
|
result = this["process" + format.toUpperCase()]( |
|
imageData, |
|
getImageIndex.call(this), |
|
alias, |
|
checkCompressValue(compression), |
|
dataAsBinaryString |
|
); |
|
} |
|
|
|
if (!result) { |
|
throw new Error("An unknown error occurred whilst processing the image."); |
|
} |
|
return result; |
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var convertBase64ToBinaryString = (jsPDFAPI.__addimage__.convertBase64ToBinaryString = function( |
|
stringData, |
|
throwError |
|
) { |
|
throwError = typeof throwError === "boolean" ? throwError : true; |
|
var base64Info; |
|
var imageData = ""; |
|
var rawData; |
|
|
|
if (typeof stringData === "string") { |
|
base64Info = extractImageFromDataUrl(stringData); |
|
rawData = base64Info !== null ? base64Info.data : stringData; |
|
|
|
try { |
|
imageData = atob(rawData); |
|
} catch (e) { |
|
if (throwError) { |
|
if (!validateStringAsBase64(rawData)) { |
|
throw new Error( |
|
"Supplied Data is not a valid base64-String jsPDF.convertBase64ToBinaryString " |
|
); |
|
} else { |
|
throw new Error( |
|
"atob-Error in jsPDF.convertBase64ToBinaryString " + e.message |
|
); |
|
} |
|
} |
|
} |
|
} |
|
return imageData; |
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
jsPDFAPI.getImageProperties = function(imageData) { |
|
var image; |
|
var tmpImageData = ""; |
|
var format; |
|
|
|
if (isDOMElement(imageData)) { |
|
imageData = getImageDataFromElement(imageData); |
|
} |
|
|
|
if ( |
|
typeof imageData === "string" && |
|
getImageFileTypeByImageData(imageData) === UNKNOWN |
|
) { |
|
tmpImageData = convertBase64ToBinaryString(imageData, false); |
|
|
|
if (tmpImageData === "") { |
|
tmpImageData = jsPDFAPI.loadFile(imageData) || ""; |
|
} |
|
imageData = tmpImageData; |
|
} |
|
|
|
format = getImageFileTypeByImageData(imageData); |
|
if (!isImageTypeSupported(format)) { |
|
throw new Error( |
|
"addImage does not support files of type '" + |
|
format + |
|
"', please ensure that a plugin for '" + |
|
format + |
|
"' support is added." |
|
); |
|
} |
|
|
|
if (supportsArrayBuffer() && !(imageData instanceof Uint8Array)) { |
|
imageData = binaryStringToUint8Array(imageData); |
|
} |
|
|
|
image = this["process" + format.toUpperCase()](imageData); |
|
|
|
if (!image) { |
|
throw new Error("An unknown error occurred whilst processing the image"); |
|
} |
|
|
|
image.fileType = format; |
|
|
|
return image; |
|
}; |
|
})(jsPDF.API); |
|
|