UNPKG

pdf-lib

Version:

Create and modify PDF files with JavaScript

72 lines 2.8 kB
import { __extends } from "tslib"; import PDFObject from "./PDFObject"; import CharCodes from "../syntax/CharCodes"; import { copyStringIntoBuffer, toHexStringOfMinLength, utf16Decode, utf16Encode, pdfDocEncodingDecode, parseDate, hasUtf16BOM, } from "../../utils"; import { InvalidPDFDateStringError } from "../errors"; var PDFHexString = /** @class */ (function (_super) { __extends(PDFHexString, _super); function PDFHexString(value) { var _this = _super.call(this) || this; _this.value = value; return _this; } PDFHexString.prototype.asBytes = function () { // Append a zero if the number of digits is odd. See PDF spec 7.3.4.3 var hex = this.value + (this.value.length % 2 === 1 ? '0' : ''); var hexLength = hex.length; var bytes = new Uint8Array(hex.length / 2); var hexOffset = 0; var bytesOffset = 0; // Interpret each pair of hex digits as a single byte while (hexOffset < hexLength) { var byte = parseInt(hex.substring(hexOffset, hexOffset + 2), 16); bytes[bytesOffset] = byte; hexOffset += 2; bytesOffset += 1; } return bytes; }; PDFHexString.prototype.decodeText = function () { var bytes = this.asBytes(); if (hasUtf16BOM(bytes)) return utf16Decode(bytes); return pdfDocEncodingDecode(bytes); }; PDFHexString.prototype.decodeDate = function () { var text = this.decodeText(); var date = parseDate(text); if (!date) throw new InvalidPDFDateStringError(text); return date; }; PDFHexString.prototype.asString = function () { return this.value; }; PDFHexString.prototype.clone = function () { return PDFHexString.of(this.value); }; PDFHexString.prototype.toString = function () { return "<" + this.value + ">"; }; PDFHexString.prototype.sizeInBytes = function () { return this.value.length + 2; }; PDFHexString.prototype.copyBytesInto = function (buffer, offset) { buffer[offset++] = CharCodes.LessThan; offset += copyStringIntoBuffer(this.value, buffer, offset); buffer[offset++] = CharCodes.GreaterThan; return this.value.length + 2; }; PDFHexString.of = function (value) { return new PDFHexString(value); }; PDFHexString.fromText = function (value) { var encoded = utf16Encode(value); var hex = ''; for (var idx = 0, len = encoded.length; idx < len; idx++) { hex += toHexStringOfMinLength(encoded[idx], 4); } return new PDFHexString(hex); }; return PDFHexString; }(PDFObject)); export default PDFHexString; //# sourceMappingURL=PDFHexString.js.map