namespace Image.Files { /// /// IOutputSink is an interface for generating saving the generated files.. /// public interface IOutputSink { /// /// Generates an absolute output path given the initial absolute file path. /// /// The initial file path. /// The formatted absolute output path. string GetOutputPath(string initialFilePath); } }