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