Specify Save Options

When saving a document, you can set some advanced properties. Aspose.Words provides you with the SaveOptions class, which allows more precise control of the save process. There are overloads of the Save method that accept a SaveOptions object – it should be an object of a class derived from the SaveOptions class. Each save format has a corresponding class that holds save options for this save format, for example, there is PdfSaveOptions for saving to PDF format, MarkdownSaveOptions for saving to Markdown format, or ImageSaveOptions for saving to an image. This article provides examples of working with some options classes derived from SaveOptions.

The following code example shows how to set the save options before saving the document into HTML:

The article describes a few properties you can control when saving a document.

Encrypt a Document With a Password

Use the Password property to get or set a password for an encrypted document. Use the Password property of the corresponding class to work with the selected document format.

For example, when saving a document to DOC or DOT format, use the Password property of the DocSaveOptions class.

The following code example shows how to set a password to encrypt a document using the RC4 encryption method:

When saving a document to ODT format, use the Password property of the OdtSaveOptions class.

The following code example shows how to load and save OpenDocument encrypted with a password:

Not all formats support encryption and the use of Password property.

Show Document Saving Progress Notifications

Aspose.Words provides the ability to use the ProgressCallback property to get notifications about the progress of document saving.

It is now available when saving to DOCX, FlatOpc, DOCM, DOTM, DOTX, HTML, MHTML, EPUB, XamlFlow, XamlFlowPack, or TXT formats.

Update the Document Creation Time

Aspose.Words provides an ability to use the CreatedTime property to get or set the document creation date in UTC. You can also update this value before saving using the UpdateCreatedTimeProperty option.

The following code example shows how to update the document creation time:

Update Last Saved Property

Aspose.Words provides an ability to use the UpdateLastSavedTimeProperty property to gets or sets a value determining whether the LastSavedTime property is updated before saving.

The following code example shows how to set this property and save the document:

Save Black and White Image with One Bit Per Pixel Format

To control image saving options, the ImageSaveOptions class is used. For example, you can use the PixelFormat property to set the pixel format for the generated images. Please note that the pixel format of the output image may differ from the set value because of the work of GDI+.

The following code example shows how to save a black and white image with one bit per pixel format:


FAQ

  1. Q: How can I set a password when saving a document to PDF in C++?
    A: Use the PdfSaveOptions class and assign the desired password to its Password property. Then pass the PdfSaveOptions instance to Document::Save. Example:

    Aspose::Words::Saving::PdfSaveOptions saveOptions;
    saveOptions.set_Password(u"Secret123");
    doc->Save(u"Encrypted.pdf", saveOptions);
    
  2. Q: Which property lets me receive progress notifications while a document is being saved?
    A: Assign an implementation of IProgressCallback to the ProgressCallback property of the appropriate SaveOptions class (e.g., DocxSaveOptions). The callback’s Notify method will be called periodically with the percentage completed.

  3. Q: How do I update the document’s creation time before saving?
    A: Set the CreatedTime property of the document’s built‑in properties, then enable UpdateCreatedTimeProperty on the SaveOptions you use.

    doc->get_BuiltInDocumentProperties()->set_CreatedTime(Aspose::System::DateTime::Now);
    Aspose::Words::Saving::SaveOptions saveOptions;
    saveOptions.set_UpdateCreatedTimeProperty(true);
    doc->Save(u"output.docx", saveOptions);
    
  4. Q: Can I force the last‑saved timestamp to be refreshed when saving?
    A: Yes. Set UpdateLastSavedTimeProperty to true on the SaveOptions object you pass to Document::Save. This makes Aspose.Words write the current UTC time to the LastSavedTime property.

  5. Q: How can I save an image generated from a document as a 1‑bit black‑and‑white PNG?
    A: Use ImageSaveOptions, set its PixelFormat to PixelFormat::Format1bppIndexed, and then save the document page as an image.

    Aspose::Words::Saving::ImageSaveOptions imgOptions;
    imgOptions.set_PixelFormat(Aspose::Words::Saving::PixelFormat::Format1bppIndexed);
    doc->Save(u"page.png", imgOptions);