Hi Otto Moura Machado Filho,
Thank you for the
update. As mentioned, the typeSignatureFonts
API (custom property) is not set internally by default, but it can be added
dynamically at the application level.
We have attached a
simple working implementation using Syncfusion Angular PDF Viewer v31.2.12,
which demonstrates how to add custom fonts to the handwritten signature dialog.
Please review the sample and check whether it meets your requirements, and let us
know if you have any questions.
Code snippet:
<ejs-pdfviewer
#pdfviewer
id="pdfViewer"
[documentPath]="document"
[resourceUrl]="resource"
[handWrittenSignatureSettings]="handWritten"
style="height:640px;display:block"
></ejs-pdfviewer>
public handWritten = {
//set the custom fonts here and add the respective styles import in HTML head tags
typeSignatureFonts: ['Allura', 'Tangerine', 'Sacramento', 'Inspiration'],
};
Sample
with typeSignatureFonts API
Regards,
Venkada Subramanian D