ImgMetadataRemover/ImageCore/Core/IMetadataRemover.cs

20 lines
631 B
C#
Raw Normal View History

namespace Image.Core
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>
/// Cleans an image and saves it under a new path.
2022-01-23 17:30:05 +00:00
/// </summary>
/// <param name="newFilePath">The file path to save the clean image.</param>
void CleanImage(string newFilePath);
/// <summary>
/// GetImagePath gets the current image path on the filesystem.
/// </summary>
/// <returns>A string representing the absolute path.</returns>
string GetImagePath();
2022-01-23 13:12:17 +00:00
}
}