// --------------------------------------------------------------------------------------------------------------------
//
// Copyright (c) James South.
// Licensed under the Apache License, Version 2.0.
//
//
// Enumerated cop modes to apply to cropped images.
//
// --------------------------------------------------------------------------------------------------------------------
namespace ImageProcessor.Imaging
{
///
/// Enumerated cop modes to apply to cropped images.
///
public enum CropMode
{
///
/// Crops the image using the standard rectangle model of x, y, width, height.
///
Pixels,
///
/// Crops the image using percentages model left, top, right, bottom.
///
Percentage
}
}