Source code for abstract_api.image_processing.strategies.exact

from ._mixins import HeightMixin, WidthMixin
from .base_strategy import BaseStrategy


[docs] class Exact(HeightMixin, WidthMixin, BaseStrategy): """Resize to exact width and height. Aspect ratio will not be maintained. """