Normalize the BBox of form XObjects on the /core side

This commit is contained in:
Jani Pehkonen 2018-10-16 16:23:14 +03:00
parent ecbdc508f7
commit 9cd5f94f03
3 changed files with 7 additions and 2 deletions

View file

@ -1278,7 +1278,7 @@ SVGGraphics = (function SVGGraphicsClosure() {
matrix[3], matrix[4], matrix[5]);
}
if (Array.isArray(bbox) && bbox.length === 4) {
if (bbox) {
var width = bbox[2] - bbox[0];
var height = bbox[3] - bbox[1];