// --------------------------------------------------------------------------------------------------------------------
//
// Copyright (c) James South.
// Licensed under the Apache License, Version 2.0.
//
//
// Enumerated resize modes to apply to resized images.
//
// --------------------------------------------------------------------------------------------------------------------
namespace ImageProcessor.Imaging
{
///
/// Enumerated resize modes to apply to resized images.
///
public enum ResizeMode
{
///
/// Pads the resized image to fit the bounds of its container.
///
Pad,
///
/// Stretches the resized image to fit the bounds of its container.
///
Stretch
}
}