pdf-lib
Version:
Create and modify PDF files with JavaScript
77 lines (62 loc) • 2.15 kB
text/typescript
import PDFContext from 'src/core/PDFContext';
import PDFDict from 'src/core/objects/PDFDict';
import PDFNumber from 'src/core/objects/PDFNumber';
import PDFString from 'src/core/objects/PDFString';
import PDFHexString from 'src/core/objects/PDFHexString';
import PDFName from 'src/core/objects/PDFName';
import PDFRef from 'src/core/objects/PDFRef';
import PDFAcroTerminal from 'src/core/acroform/PDFAcroTerminal';
class PDFAcroText extends PDFAcroTerminal {
static fromDict = (dict: PDFDict, ref: PDFRef) => new PDFAcroText(dict, ref);
static create = (context: PDFContext) => {
const dict = context.obj({
FT: 'Tx',
Kids: [],
});
const ref = context.register(dict);
return new PDFAcroText(dict, ref);
};
MaxLen(): PDFNumber | undefined {
const maxLen = this.dict.lookup(PDFName.of('MaxLen'));
if (maxLen instanceof PDFNumber) return maxLen;
return undefined;
}
Q(): PDFNumber | undefined {
const q = this.dict.lookup(PDFName.of('Q'));
if (q instanceof PDFNumber) return q;
return undefined;
}
setMaxLength(maxLength: number) {
this.dict.set(PDFName.of('MaxLen'), PDFNumber.of(maxLength));
}
removeMaxLength() {
this.dict.delete(PDFName.of('MaxLen'));
}
getMaxLength(): number | undefined {
return this.MaxLen()?.asNumber();
}
setQuadding(quadding: 0 | 1 | 2) {
this.dict.set(PDFName.of('Q'), PDFNumber.of(quadding));
}
getQuadding(): number | undefined {
return this.Q()?.asNumber();
}
setValue(value: PDFHexString | PDFString) {
this.dict.set(PDFName.of('V'), value);
// const widgets = this.getWidgets();
// for (let idx = 0, len = widgets.length; idx < len; idx++) {
// const widget = widgets[idx];
// const state = widget.getOnValue() === value ? value : PDFName.of('Off');
// widget.setAppearanceState(state);
// }
}
removeValue() {
this.dict.delete(PDFName.of('V'));
}
getValue(): PDFString | PDFHexString | undefined {
const v = this.V();
if (v instanceof PDFString || v instanceof PDFHexString) return v;
return undefined;
}
}
export default PDFAcroText;