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