Skip to main content

PageByPageExportOptionsBase.RasterizationResolution Property

Specifies the resolution (in DPI) used to rasterize vector images on export to the corresponding document format.

Namespace: DevExpress.XtraPrinting

Assembly: DevExpress.Printing.v23.2.Core.dll

NuGet Package: DevExpress.Printing.Core

Declaration

[DefaultValue(96)]
public virtual int RasterizationResolution { get; set; }

Property Value

Type Default Description
Int32 96

The resolution (in DPI) used to rasterize vector images.

Remarks

The RasterizationResolution property is in effect when the PageByPageExportOptionsBase.RasterizeImages option is enabled, and specifies the resolution (in DPI) used to rasterize vector images on export to the corresponding document format.

The following export formats support this feature:

The following export formats have the PageByPageExportOptionsBase.RasterizeImages setting always set to true and provide only the RasterizationResolution property:

When you export to PDF, the RasterizationResolution property is in effect in the following cases:

  • The PdfExportOptions.ConvertImagesToJpeg property is set to true, regardless of the PageByPageExportOptionsBase.RasterizeImages property value.
  • The exported document contains metafile images with unsupported commands. These images are converted to raster images with the resolution that is the maximum value between the internal image resolution and the RasterizationResolution property value.
See Also