corelibraries-devexpress-dot-xtraprinting-dot-pdfexportoptions-df6814fa.md
Specifies whether to convert the bitmap and meta file images contained in the document to JPEG format during the export to PDF.
Namespace : DevExpress.XtraPrinting
Assembly : DevExpress.Printing.v25.2.Core.dll
NuGet Package : DevExpress.Printing.Core
[DefaultValue(true)]
public bool ConvertImagesToJpeg { get; set; }
<DefaultValue(True)>
Public Property ConvertImagesToJpeg As Boolean
| Type | Default | Description |
|---|---|---|
| Boolean | true |
true , to convert images to JPEG; otherwise, false.
|
You can access this nested property as listed below:
| Library | Object Type | Path to ConvertImagesToJpeg |
|---|---|---|
| Cross-Platform Class Library | ExportOptions |
.Pdf .ConvertImagesToJpeg
| | WinForms Controls | DiagramOptionsExport |
.PdfExportOptions .ConvertImagesToJpeg
| | WPF Controls | DiagramControl |
.PdfExportOptions .ConvertImagesToJpeg
|
Use the ConvertImagesToJpeg property to convert the bitmap and metafile images contained in the document to JPEG format during the export to PDF operation. This reduces the size of the PDF document.
Images are converted to JPEG only if this option is enabled and the JPEG image size is smaller than the original image size.
You can use the PdfExportOptions.ImageQuality property to change the embedded images’ quality and further reduce the document size.
See Also