David PHAM-VAN
David PHAM-VAN
Yes, all schema generation could be in another package.
Thanks!
Something like: ```dart Signature( name: 'Signature', value: PdfSign.rsaSha1( privateKey: privateKey, certificates: chain, ), child: PdfLogo(), ), ``` It's described here: https://pub.nfet.net/pdf_crypto/
Yes it is. It's for digital cryptographic signature, not for hand-signed.
Ask the user to draw with a hand sign flutter plugin and add it as an image in the pdf.
Maybe Windows can't detect the paper size from the width and length with dmPaperSize = 0. This value needs to be computed: https://github.com/DavBfr/dart_pdf/blob/master/printing/windows/print_job.cpp#L102C9-L102C20 from the PDF Width and Height with...
I guess write a list of if statements to check the width and height to define the paper size. like: if ((int) width == 419 && (int)height == 595) {...
In the cpp code for Windows.
Update to the latest version of the pdf library, it's compatible with the latest Flutter version.
Nice chunk of work! How do you plan to use that data?