+/**
+ Image resize algorithm.
+
+ This is used with wxImage::Scale() and wxImage::Rescale().
+ */
+enum wxImageResizeQuality
+{
+ /// Simplest and fastest algorithm.
+ wxIMAGE_QUALITY_NEAREST,
+
+ /// Compromise between wxIMAGE_QUALITY_NEAREST and wxIMAGE_QUALITY_BICUBIC.
+ wxIMAGE_QUALITY_BILINEAR,
+
+ /// Highest quality but slowest execution time.
+ wxIMAGE_QUALITY_BICUBIC,
+
+ /// Default image resizing algorithm used by wxImage::Scale().
+ wxIMAGE_QUALITY_NORMAL,
+
+ /// Best image resizing algorithm, currently same as wxIMAGE_QUALITY_BICUBIC.
+ wxIMAGE_QUALITY_HIGH
+};
+