How to save PDF document with other format
Leave feedback
Signature class supports saving of Pdf signed documents to different formats. Each of document type has list of compatible saving type. These values are listed in enumΒ PdfSaveFileFormat.
Here are the steps to save signed Pdf document to different output type with GroupDocs.Signature:
- Create new instance ofΒ SignatureΒ Β class and pass source document path or stream as a constructor parameter.
- Instantiate required signature options.
- Instantiate theΒ PdfSaveOptionsΒ object according to your requirements and specifyΒ FileFormatΒ as one of predefined values fromΒ PdfSaveFileFormat.
- CallΒ SignΒ method ofΒ Signature class instance and pass signatureoptions andΒ PdfSaveOptionsΒ objectΒ to it.
Following example demonstrates how to save signed PDF document with different output type
using (Signature signature = new Signature("sample.pdf"))
{
// create QRCode option with predefined QRCode text
QrCodeSignOptions signOptions = new QrCodeSignOptions("JohnSmith")
{
EncodeType = QRCodeTypes.QR,
Left = 100,
Top = 100
};
PdfSaveOptions pdfSaveOptions = new PdfSaveOptions()
{
FileFormat = PdfSaveFileFormat.DocX,
OverwriteExistingFiles = true
};
// sign document to file
signature.Sign("SignedPdf.docx", signOptions, pdfSaveOptions);
}
You may easily run the code above and see the feature in action in ourΒ GitHub examples:
- GroupDocs.Signature for .NET examples, plugins, and showcase
- GroupDocs.Signature for Java examples, plugins, and showcase
- Document Signature for .NET MVC UI Example
- Document Signature for .NET App WebForms UI Example
- Document Signature for Java App Dropwizard UI Example
- Document Signature for Java Spring UI Example
Along with the full-featured .NET library, we provide simple but powerful free online apps.
To sign PDF, Word, Excel, PowerPoint, and other documents you can use the online apps from the GroupDocs.Signature App Product Family.
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.