* Set the producer application. * * @param producer - The application that produced the PDF * * @example * ```typescript * pdf.setProducer("@libpdf/core"); * ```
(producer: string)
| 1275 | * ``` |
| 1276 | */ |
| 1277 | setProducer(producer: string): void { |
| 1278 | this.getInfoDict().set("Producer", PdfString.fromString(producer)); |
| 1279 | } |
| 1280 | |
| 1281 | /** |
| 1282 | * Get the document creation date. |
no test coverage detected