namespace Image.Core
{
///
/// Interface for implementing metadata removers.
///
public interface IMetadataRemover
{
///
/// Cleans an image and saves it under a new path.
///
/// The file path to save the clean image.
void CleanImage(string newFilePath);
///
/// GetImagePath gets the current image path on the filesystem.
///
/// A string representing the absolute path.
string GetImagePath();
}
}