UNPKG

pdf-lib

Version:

Library for creating and modifying PDF files in JavaScript

15 lines (14 loc) 494 B
import PDFOperator from '../../../pdf-operators/PDFOperator'; /** * Set the horizontal scaling, Th, to (scale ÷ 100). scale shall be a number * specifying the percentage of the normal width. Initial value: 100 (normal width). */ declare class Tz extends PDFOperator { static of: (scale: number) => Tz; scale: number; constructor(scale: number); toString: () => string; bytesSize: () => number; copyBytesInto: (buffer: Uint8Array) => Uint8Array; } export default Tz;