Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

PdfRenderingSettings.UseExternalDctDecoder Property

Specifies whether the external Windows Imaging Component (WIC) decoder can be used to optimize JPEG image decoding.

Namespace: DevExpress.Pdf

Assembly: DevExpress.Pdf.v20.2.Core.dll

NuGet Package: DevExpress.Pdf.Core

Declaration

public static bool UseExternalDctDecoder { get; set; }

Property Value

Type Description
Boolean

true, to allow using the external DCT decoder to optimize JPEG image decoding; false, the GDI+ decoder is used for JPEG image decoding. The default value is true.

Remarks

You can prohibit using a Windows Imaging Component (WIC) DCT decoder in any situation by setting the UseExternalDctDecoder property to false. In this case, the GDI+ decoder is always used for JPEG decoding.

Note

This property must be specified before the PDF Viewer or PDF Document Processor is initialized. Otherwise, this property won’t have any effect in your application.

See Also