2022-02-11 21:39:34 +00:00
|
|
|
|
namespace Image.Files
|
2022-01-23 17:30:05 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// IOutputFormatter is an interface for generating the output path and destination file name.
|
|
|
|
|
/// </summary>
|
2022-01-25 20:57:22 +00:00
|
|
|
|
public interface IFileOutputFormatter
|
2022-01-23 17:30:05 +00:00
|
|
|
|
{
|
|
|
|
|
/// <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);
|
|
|
|
|
}
|
|
|
|
|
}
|