Hello
Few queries if you don’t mind please?
ImageSaveOptions.Resolution what is the default value? And min / max possible/recommended value?
When saving mhtml to DOC, setting DocSaveOptions.SaveRoutingSlip to True or False does not have a difference, can you please kindly advise what’s SaveRoutingSlip exactly? And recommended value?
OoxmlSaveOptions is for saving as DOCX right? So, the default value of OoxmlSaveOptions.KeepLegacyControlChars is not mentioned in the help file, what’s your recommended value for it?
When converting mhtml to pdf and PdfSaveOptions.EmbedAttachments = True
If source mhtml has attachments, target PDF will not have those attachments!
When using Words to convert, like mhtml to pdf, with no editing, UpdateFields shall be True or False?
Setting this to True will cause slower saving?
Thanks
Hello and thanks:
Just kindly inform me of min / max accepted values
@australian.dev.nerds There is no min/max restrictions of resolution value in Aspose.Words code. The only restriction is that resolution value must be greater than zero.
However, since Aspose.Words uses System.Drawing or Skisharp (in. NET Standard and .NET6 versions) to write images, resolution value might be restricted by these libraries. Here is a good explanation for System.Drawing:
https://stackoverflow.com/questions/29175585/what-is-the-maximum-resolution-of-c-sharp-net-bitmap
Thanks, to finish, kindly advise what type of anti aliasing is in save options used?
https://en.wikipedia.org/wiki/Anti-aliasing
@australian.dev.nerds Aspose.Words does not implement anti aliasing itself. This options simply enables anti aliasing in System.Drawing or Skisharp, depending on the platform.