Tizen Native API
Dali::SamplingMode Namespace Reference

Filtering options, used when resizing images to sample original pixels. More...

Enumerations

enum  Type

Variables

const Type DEFAULT = BOX
 TOP_LEFT.

Detailed Description

Filtering options, used when resizing images to sample original pixels.

A SamplingMode controls how pixels in an input image are sampled and combined to generate each pixel of a destination image during a scaling.

NoFilter and Box modes do not guarantee that the output pixel array exactly matches the rectangle specified by the desired dimensions and FittingMode, but all other filter modes do if the desired dimensions are `<=` the raw dimensions of the input image file.

Since :
2.4

Enumeration Type Documentation

Enumerator:
BOX 

Iteratively box filter to generate an image of 1/2, 1/4, 1/8, etc width and height and approximately the desired size. This is the default.

Since :
2.4
NEAREST 

For each output pixel, read one input pixel.

Since :
2.4
LINEAR 

For each output pixel, read a quad of four input pixels and write a weighted average of them.

Since :
2.4
BOX_THEN_NEAREST 

Iteratively box filter to generate an image of 1/2, 1/4, 1/8 etc width and height and approximately the desired size, then for each output pixel, read one pixel from the last level of box filtering.

Since :
2.4
BOX_THEN_LINEAR 

Iteratively box filter to almost the right size, then for each output pixel, read four pixels from the last level of box filtering and write their weighted average.

Since :
2.4
NO_FILTER 

No filtering is performed. If the SCALE_TO_FILL scaling mode is enabled, the borders of the image may be trimmed to match the aspect ratio of the desired dimensions.

Since :
2.4
DONT_CARE 

For caching algorithms where a client strongly prefers a cache-hit to reuse a cached image.

Since :
2.4

Variable Documentation

TOP_LEFT.

CENTER.