SaveOptionsUseAntiAliasing Property |
The default value is false. When this value is set to true anti-aliasing is used for rendering.
This property is used when the document is exported to the following formats: Tiff, Png, Bmp, Jpeg, Emf. When the document is exported to the Html, Mhtml and Epub formats this option is used for raster images.
Document doc = new Document(MyDir + "Rendering.docx"); DocumentBuilder builder = new DocumentBuilder(doc); builder.Font.Size = 60; builder.Writeln("Some text."); SaveOptions options = new ImageSaveOptions(SaveFormat.Jpeg); doc.Save(ArtifactsDir + "Document.ImageSaveOptions.Default.jpg", options); options.UseAntiAliasing = true; options.UseHighQualityRendering = true; doc.Save(ArtifactsDir + "Document.ImageSaveOptions.HighQuality.jpg", options);