@ironsoftware/ironpdf
Version:
IronPDF for Node
25 lines • 1.29 kB
TypeScript
/// <reference types="node" />
/// <reference types="node" />
import { BarcodeStampOptions, HtmlStampOptions, ImageStampOptions, TextStampOptions } from "../../../public/stamp";
import { PdfPageSelection, PdfPassword } from "../../../public/types";
export declare function stampHtml(id: string, html: string, options?: {
htmlStampOptions?: HtmlStampOptions | undefined;
pageSelection?: PdfPageSelection | undefined;
password?: PdfPassword | undefined;
} | undefined): Promise<void>;
export declare function stampText(id: string, text: string, options?: {
password?: PdfPassword | undefined;
textStampOptions?: TextStampOptions | undefined;
pageSelection?: PdfPageSelection | undefined;
} | undefined): Promise<void>;
export declare function stampImage(id: string, imageBuffer: Buffer, options?: {
password?: PdfPassword | undefined;
imageStampOptions?: ImageStampOptions | undefined;
pageSelection?: PdfPageSelection | undefined;
} | undefined): Promise<void>;
export declare function stampBarcode(id: string, barcodeValue: string, options?: {
password?: PdfPassword | undefined;
barcodeStampOptions?: BarcodeStampOptions | undefined;
pageSelection?: PdfPageSelection | undefined;
} | undefined): Promise<void>;
//# sourceMappingURL=stamp.d.ts.map