using Image.Core; namespace Image { /// /// IOutputSink is an interface for generating saving the generated files.. /// public interface IOutputSink { /// /// Saves the image. /// /// Metadata remover instance. /// True if the image was saved successfully, false otherwise. bool Save(IMetadataRemover metadataRemover); } }