SaveOptions.UseHighQualityRendering

SaveOptions UseHighQualityRendering property. Gets or sets a value determining whether or not to use high quality i.e. slow rendering algorithms.

SaveOptions.UseHighQualityRendering property

Gets or sets a value determining whether or not to use high quality (i.e. slow) rendering algorithms.

public bool UseHighQualityRendering { get; set; }

Remarks

The default value is false.

This property is used when the document is exported to image formats: Tiff, Png, Bmp, Jpeg, Emf.

Examples

Shows how to enable anti-aliasing and high quality rendering.

SaveOptions so = SaveOptions.CreateSaveOptions(SaveFormat.Tiff);
so.UseAntiAliasing = true;
so.UseHighQualityRendering = true;

Converter.Create()
    .From(MyDir + "Simple.docx")
    .To(ArtifactsDir + "SaveOptions.UpdateFields.tiff", so)
    .Execute();

See Also