PDFViewCtrlSetImageSmoothing Method |
Enable or disable image smoothing. The rasterizer allows a trade-off between rendering quality and rendering speed. This function can be used to indicate the preference between rendering speed and quality.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public void SetImageSmoothing(
bool smoothing_enabled
)
Public Sub SetImageSmoothing (
smoothing_enabled As Boolean
)
public:
virtual void SetImageSmoothing(
[InAttribute] bool smoothing_enabled
) sealed
function SetImageSmoothing(smoothing_enabled);
Parameters
- smoothing_enabled
- Type: SystemBoolean
True to enable image smoothing, false otherwise. image smoothing is enabled.
Remarks image smoothing option has effect only if the source image has higher resolution that the output resolution of the image on the rasterized page. PDFNet automatically controls at what resolution/zoom factor, 'image smoothing' needs to take effect.
See Also