Lines Matching refs:height

2079 	    pageSize = { width: pageSize.height, height: pageSize.width};
2083 this.pdfKitDoc = new PdfKit({ size: [ pageSize.width, pageSize.height ], compress: false});
2185 return { width: size[0], height: size[1] };
2203 var height = pdfKitDoc.options.size[1];
2204 pdfKitDoc.options.size = [height, width];
2254 pdfKitDoc.transform(1, 0, 0, -1, 0, pdfKitDoc.page.height);
2260 …pdfKitDoc.addContent('' + (x + inline.x) + ' ' + (pdfKitDoc.page.height - y - ascenderHeight) + ' …
2280 pdfKitDoc.transform(1, 0, 0, -1, 0, pdfKitDoc.page.height);
2282 var angle = Math.atan2(pdfKitDoc.page.height, pdfKitDoc.page.width) * 180/Math.PI;
2283 pdfKitDoc.rotate(angle, {origin: [pdfKitDoc.page.width/2, pdfKitDoc.page.height/2]});
2287 …/2 - watermark.size.size.width/2) + ' ' + (pdfKitDoc.page.height/2 - watermark.size.size.height/4)…
2352 pdfKitDoc.image(image.image, image.x, image.y, { width: image._width, height: image._height });
13553 this.writer.beginUnbreakableBlock(pageSize.width, pageSize.height);
13573 this.writer.beginUnbreakableBlock(sizes.width, sizes.height);
13586 height: pageMargins.top
13593 y: pageSize.height - pageMargins.bottom,
13595 height: pageMargins.bottom
13627 var height = pageSize.height;
13628 … var targetWidth = Math.sqrt(width*width + height*height)*0.8; /* page diagnoal * sample factor */
13958 var height = node._minHeight;
13960 if (this.writer.context().availableHeight < height) {
13972 this.writer.context().moveDown(height);
14207 …ageSize.width / imageSize.height > node.fit[0] / node.fit[1]) ? node.fit[0] / imageSize.width : no…
14209 node._height = imageSize.height * factor;
14212 node._height = node.height || (imageSize.height * node._width / imageSize.width);
14266 …y: (gapSize.height / gapSize.lineHeight) + gapSize.decender - gapSize.fontSize / 3,//0,// gapSize.…
14276 marker._minHeight = marker._maxHeight = gapSize.height;
14629 height: font.lineHeight(fontSize) * lineHeight,
14768 item.height = font.lineHeight(fontSize) * lineHeight;
16056 …this.availableHeight = this.getCurrentPage().pageSize.height - this.pageMargins.top - this.pageMar…
16075 this.availableHeight = this.getCurrentPage().pageSize.height - this.y - this.pageMargins.bottom;
16120 width: currentPage.pageSize.height,
16121 height: currentPage.pageSize.width
16127 height: currentPage.pageSize.height
16176 var innerHeight = pageSize.height - this.pageMargins.top - this.pageMargins.bottom;
16287 this.writer.context.moveDown(rep.height);
16298 PageElementWriter.prototype.beginUnbreakableBlock = function(width, height) {
16301 this.writer.pushContext(width, height);
16321 …fragment.height = unbreakableContext.getCurrentPage().pageSize.height - unbreakableContext.pageMar…
16323 …fragment.height = this.writer.context.getCurrentPage().pageSize.height - this.writer.context.pageM…
16325 fragment.height -= this.repeatables[i].height;
16329 fragment.height = unbreakableContext.y;
16352 rep.height = unbreakableContext.y;
16403 var height = line.getHeight();
16408 if (context.availableHeight < height || !page) {
16423 if (!dontUpdateContextPosition) context.moveDown(height);
16561 if (!useBlockXOffset && block.height > ctx.availableHeight) return false;
16601 if (!dontUpdateContextPosition) ctx.moveDown(block.height);
16613 ElementWriter.prototype.pushContext = function(contextOrWidth, height) {
16615height = this.context.getCurrentPage().height - this.context.pageMargins.top - this.context.pageMa…
16620 …contextOrWidth = new DocumentContext({ width: contextOrWidth, height: height }, { left: 0, right: …
16705 max = Math.max(max, item.height || 0);
17137 this.transform(1, 0, 0, -1, 0, this.page.height);
27684 this.height = dimensions[this.layout === 'portrait' ? 1 : 0];
27734 MediaBox: [0, 0, this.width, this.height],
27741 return this.height - this.margins.bottom;
28268 BBox: [0, 0, this.doc.page.width, this.doc.page.height],
31674 var height, lineGap, x, y;
31680 options.height = Infinity;
31687 height = this.y - y;
31690 return height;
31864 this.transform(1, 0, 0, -1, 0, this.page.height);
31865 y = this.page.height - y - (this._font.ascender / 1000 * this._fontSize);
31951 if (options.height != null) {
31952 this.height = options.height;
31953 this.maxY = this.startY + options.height;
32084 …if ((_this.height != null) && _this.ellipsis && _this.document.y + lh * 2 > _this.maxY && _this.co…
32147 if (this.height != null) {
65211 h = options.height || image.height;
65212 if (options.width && !options.height) {
65215 h = image.height * wp;
65216 } else if (options.height && !options.width) {
65217 hp = h / image.height;
65219 h = image.height * hp;
65222 h = image.height * options.scale;
65226 ip = image.width / image.height;
65355 this.height = this.data.readUInt16BE(pos);
65382 Height: this.height,
65419 this.height = this.image.height;
65435 Height: this.height,
65481 Height: this.height,
65501 pixelCount = _this.width * _this.height;
65541 alphaChannel = new Buffer(_this.width * _this.height);
65640 this.height = this.readUInt32();
65750 pixels = new Buffer(scanlineLength * _this.height);
65876 ret = new Buffer(this.width * this.height * 4);
65985 options.L = [x1, this.page.height - y1, x2, this.page.height - y2];
66116 return { width: image.width, height: image.height };
66200 height = biggerInline.height,
66201 descent = height - ascent;
66273 var height = line.getHeight();
66278 .rect(x + inline.x, y, inline.width, height)