naps2/NAPS2.Sdk/ImportExport/IScannedImageImporter.cs

12 lines
298 B
C#
Raw Normal View History

using System.Threading;
using NAPS2.Images;
using NAPS2.Util;
namespace NAPS2.ImportExport
{
public interface IScannedImageImporter
{
ScannedImageSource Import(string filePath, ImportParams importParams, ProgressHandler progressCallback, CancellationToken cancelToken);
}
}