UseHighQualityRendering

SaveOptions.UseHighQualityRendering property

获取或设置一个值,确定是否使用高质量(即慢速)渲染算法。

public bool UseHighQualityRendering { get; set; }

评论

默认值为错误的.

当文档导出为图像格式时使用此属性: Tiff,Png,Bmp, Jpeg,Emf。

例子

演示如何使用 SaveOptions 提高渲染文档的质量。

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);

也可以看看