.. include:: headings.inc .. _ImageResizeQuality: ========================================================================================================================================== |phoenix_title| **ImageResizeQuality** ========================================================================================================================================== The `ImageResizeQuality` enumeration provides the following values: ================================================================================ ================================================================================ **Description** **Value** ================================================================================ ================================================================================ ``IMAGE_QUALITY_NEAREST`` Simplest and fastest algorithm. ``IMAGE_QUALITY_BILINEAR`` Compromise between ``IMAGE_QUALITY_NEAREST`` and ``IMAGE_QUALITY_BICUBIC``. ``IMAGE_QUALITY_BICUBIC`` Highest quality but slowest execution time. ``IMAGE_QUALITY_BOX_AVERAGE`` Use surrounding pixels to calculate an average that will be used for new pixels. ``IMAGE_QUALITY_NORMAL`` Default image resizing algorithm used by :meth:`Image.Scale` . ``IMAGE_QUALITY_HIGH`` Best image resizing algorithm. ================================================================================ ================================================================================ |