@@ -3,6 +3,8 @@ import { readFile } from 'node:fs/promises';
3
3
import JSZip from 'jszip' ;
4
4
import { PDFDocument } from 'pdf-lib' ;
5
5
6
+ import { FONTS , initializeFonts } from '../../../../shared/infrastructure/serializers/pdf/utils.js' ;
7
+
6
8
export async function serialize ( templateUrl , entry , creationDate = new Date ( ) ) {
7
9
if ( Array . isArray ( entry ) ) {
8
10
return serializeArray ( templateUrl , entry , creationDate ) ;
@@ -25,6 +27,7 @@ async function serializeArray(templateUrl, entries, creationDate) {
25
27
async function serializeObject ( templateUrl , entry , creationDate ) {
26
28
const template = await readFile ( templateUrl ) ;
27
29
const pdf = await PDFDocument . load ( template ) ;
30
+ const { [ FONTS . robotoRegular ] : embeddedRobotoFont } = await initializeFonts ( pdf , [ FONTS . robotoRegular ] ) ;
28
31
29
32
pdf . setCreationDate ( creationDate ) ;
30
33
pdf . setModificationDate ( creationDate ) ;
@@ -34,6 +37,7 @@ async function serializeObject(templateUrl, entry, creationDate) {
34
37
if ( fieldName === 'filename' ) continue ;
35
38
const field = form . getTextField ( fieldName ) ;
36
39
field . setText ( value ) ;
40
+ field . updateAppearances ( embeddedRobotoFont ) ;
37
41
field . enableReadOnly ( ) ;
38
42
}
39
43
return Buffer . from ( await pdf . save ( ) ) ;
0 commit comments