15 lines
547 B
C#
15 lines
547 B
C#
|
namespace Image
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// IOutputFormatter is an interface for generating the output path and destination file name.
|
|||
|
/// </summary>
|
|||
|
public interface IFileOutputPathFormatter
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Generates an absolute output path given the initial absolute file path.
|
|||
|
/// </summary>
|
|||
|
/// <param name="initialFilePath">The initial file path.</param>
|
|||
|
/// <returns>The formatted absolute output path.</returns>
|
|||
|
string GetOutputPath(string initialFilePath);
|
|||
|
}
|
|||
|
}
|