ImgMetadataRemover/ImageCore/Remover/IMetadataRemover.cs

14 lines
408 B
C#
Raw Normal View History

2022-01-25 20:57:22 +00:00
namespace Image.Remover
2022-01-23 13:12:17 +00:00
{
2022-01-23 17:30:05 +00:00
/// <summary>
/// Interface for implementing metadata removers.
/// </summary>
2022-01-23 13:12:17 +00:00
public interface IMetadataRemover
{
2022-01-23 17:30:05 +00:00
/// <summary>
/// CleanImage cleans an image and saves it..
/// </summary>
/// <param name="newFilePath">The file path to save the clean image.</param>
void CleanImage(string newFilePath);
2022-01-23 13:12:17 +00:00
}
}