UNPKG

pdf-lib

Version:

Library for creating and modifying PDF files in JavaScript

41 lines (40 loc) 1.74 kB
"use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = Object.setPrototypeOf || ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; return function (d, b) { extendStatics(d, b); function __() { this.constructor = d; } d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); }; })(); var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; } Object.defineProperty(exports, "__esModule", { value: true }); /* eslint-disable new-cap */ var PDFOperator_1 = __importDefault(require("../../../pdf-operators/PDFOperator")); var utils_1 = require("../../../../utils"); var validate_1 = require("../../../../utils/validate"); /** * Set the text rendering mode, Tmode, to render, which shall be an integer. * Initial value: 0. */ var Tr = /** @class */ (function (_super) { __extends(Tr, _super); function Tr(render) { var _this = _super.call(this) || this; _this.toString = function () { return _this.render + " Tr\n"; }; _this.bytesSize = function () { return _this.toString().length; }; _this.copyBytesInto = function (buffer) { return utils_1.addStringToBuffer(_this.toString(), buffer); }; validate_1.validate(render, validate_1.isNumber, 'Tr operator arg "render" must be a number.'); _this.render = render; return _this; } Tr.of = function (render) { return new Tr(render); }; return Tr; }(PDFOperator_1.default)); exports.default = Tr;