* Set the creator application. * * @param creator - The application that created the original content * * @example * ```typescript * pdf.setCreator("Report Generator v2.0"); * ```
(creator: string)
| 1240 | * ``` |
| 1241 | */ |
| 1242 | setCreator(creator: string): void { |
| 1243 | this.getInfoDict().set("Creator", PdfString.fromString(creator)); |
| 1244 | } |
| 1245 | |
| 1246 | /** |
| 1247 | * Get the producer application. |
no test coverage detected