Skip to content

Commit 77fcb21

Browse files
bugfix(api): use roboto in generate pdf attestation so we have a broader glyph set
Co-authored-by: Xavier Carron <xavier.carron@pix.fr>
1 parent 892f99a commit 77fcb21

File tree

5 files changed

+5
-1
lines changed

5 files changed

+5
-1
lines changed

api/src/profile/infrastructure/serializers/pdf/pdf-with-form-serializer.js

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ import { readFile } from 'node:fs/promises';
33
import JSZip from 'jszip';
44
import { PDFDocument } from 'pdf-lib';
55

6+
import { FONTS, initializeFonts } from '../../../../shared/infrastructure/serializers/pdf/utils.js';
7+
68
export async function serialize(templateUrl, entry, creationDate = new Date()) {
79
if (Array.isArray(entry)) {
810
return serializeArray(templateUrl, entry, creationDate);
@@ -25,6 +27,7 @@ async function serializeArray(templateUrl, entries, creationDate) {
2527
async function serializeObject(templateUrl, entry, creationDate) {
2628
const template = await readFile(templateUrl);
2729
const pdf = await PDFDocument.load(template);
30+
const { [FONTS.robotoRegular]: embeddedRobotoFont } = await initializeFonts(pdf, [FONTS.robotoRegular]);
2831

2932
pdf.setCreationDate(creationDate);
3033
pdf.setModificationDate(creationDate);
@@ -34,6 +37,7 @@ async function serializeObject(templateUrl, entry, creationDate) {
3437
if (fieldName === 'filename') continue;
3538
const field = form.getTextField(fieldName);
3639
field.setText(value);
40+
field.updateAppearances(embeddedRobotoFont);
3741
field.enableReadOnly();
3842
}
3943
return Buffer.from(await pdf.save());
Binary file not shown.

api/tests/profile/integration/infrastructure/serializers/pdf/pdf-with-form-serializer_test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ describe('Integration | Infrastructure | Serializers | Pdf | PdfWithForm', funct
1717

1818
const template = `${__dirname}/template.pdf`;
1919
const data = new Map();
20-
data.set('fullName', 'Nom complet');
20+
data.set('fullName', 'Ķatherine AvecUnCharChelou');
2121
data.set('date', '12/02/21');
2222

2323
// when

0 commit comments

Comments
 (0)