//
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
//
namespace ImageProcessorCore.Samplers
{
///
/// Acts as a marker for generic parameters that require an image sampler.
///
public interface IImageSampler : IImageProcessor
{
///
/// Gets or sets a value indicating whether to compress
/// or expand individual pixel colors the value on processing.
///
bool Compand { get; set; }
}
}