How to save Presentation with different file type
Leave feedback
Signature class supports saving of Presentation signed documents with different formats. Each of document type has list of compatible saving type. These values are listed in enum PresentationSaveFileFormat.
Here are the steps to save signed Presentation 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 PresentationSaveOptions object according to your requirements and specify FileFormat as one of predefined values from PresentationSaveFileFormat.
- Call Sign method of Signature class instance and pass signatureoptions and PresentationSaveOptions object to it.
Following example demonstrates how to save signed Presentation document with different output type
using (Signature signature = new Signature("sample.ppsx"))
{
// create QRCode option with predefined QRCode text
QrCodeSignOptions signOptions = new QrCodeSignOptions("JohnSmith")
{
// setup QRCode encoding type
EncodeType = QRCodeTypes.QR,
// set signature position
Left = 100,
Top = 100
};
PresentationSaveOptions saveOptions = new PresentationSaveOptions()
{
FileFormat = PresentationSaveFileFormat.Tiff,
OverwriteExistingFiles = true
};
// sign document to file
signature.Sign("SignedPPsx", signOptions, saveOptions);
}
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.