namespace Image.Output
{
///
/// IOutputFormatter is an interface for generating the output path and destination file name.
///
public interface IFileOutputFormatter
{
///
/// Generates an absolute output path given the initial absolute file path.
///
/// The initial file path.
/// The formatted absolute output path.
string GetOutputPath(string initialFilePath);
}
}