1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-26 10:08:06 +02:00

First pass on review: worker.js -> pdf_worker.js, Font.bind cleanup + other stuff

This commit is contained in:
Julian Viereck 2011-06-23 13:09:36 +02:00
parent 4281f799e5
commit a3d815074d
6 changed files with 77 additions and 123 deletions

8
pdf.js
View file

@ -2645,9 +2645,7 @@ var CanvasGraphics = (function() {
}
var fn = Function("objpool", src);
var ret = function (gfx) { fn.call(gfx, objpool); };
ret.src = src;
return ret;
return function (gfx) { fn.call(gfx, objpool); };
},
endDrawing: function() {
@ -3015,8 +3013,8 @@ var CanvasGraphics = (function() {
var botRight = applyMatrix([x0 + xstep, y0 + ystep], matrix);
var tmpCanvas = new this.ScratchCanvas(
Math.ceil(botRight[0] - topLeft[0]), // WIDTH
Math.ceil(botRight[1] - topLeft[1]) // HEIGHT
Math.ceil(botRight[0] - topLeft[0]), // width
Math.ceil(botRight[1] - topLeft[1]) // height
);
// set the new canvas element context as the graphics context