mirror of
https://github.com/zen-browser/pdf.js.git
synced 2025-07-08 17:30:09 +02:00
Normalize the BBox of form XObjects on the /core side
This commit is contained in:
parent
ecbdc508f7
commit
9cd5f94f03
3 changed files with 7 additions and 2 deletions
|
@ -1750,7 +1750,7 @@ var CanvasGraphics = (function CanvasGraphicsClosure() {
|
|||
|
||||
this.baseTransform = this.ctx.mozCurrentTransform;
|
||||
|
||||
if (Array.isArray(bbox) && bbox.length === 4) {
|
||||
if (bbox) {
|
||||
var width = bbox[2] - bbox[0];
|
||||
var height = bbox[3] - bbox[1];
|
||||
this.ctx.rect(bbox[0], bbox[1], width, height);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue