The following example shows the effect that this parameter has
on PDF rendering.
using var doc = new Doc();
doc.Read(Server.MapPath("../mypics/HyperX.pdf"));
doc.Rect.Inset(200, 200);
// Render document with AntiAliasImages = true (default)
doc.Rendering.Save(Server.MapPath("RenderingAntiAliasImagesTrue.png"));
// Render document with AntiAliasImages = false
doc.Rendering.AntiAliasImages = false;
// Save the image
doc.Rendering.Save(Server.MapPath("RenderingAntiAliasImagesFalse.png"));
Using doc As New Doc()
doc.Read(Server.MapPath("../mypics/HyperX.pdf"))
doc.Rect.Inset(200, 200)
' Render document with AntiAliasImages = true (default)
doc.Rendering.Save(Server.MapPath("RenderingAntiAliasImagesTrue.png"))
' Render document with AntiAliasImages = false
doc.Rendering.AntiAliasImages = False
' Save the image
doc.Rendering.Save(Server.MapPath("RenderingAntiAliasImagesFalse.png"))
End Using