namespace BotSharp.Abstraction.Files.Converters; public interface IImageConverter { public string Provider { get; } /// /// Convert pdf pages to images, and return a list of image file paths /// /// Pdf file location /// Image folder location /// Task> ConvertPdfToImages(string pdfLocation, string imageFolderLocation) => throw new NotImplementedException(); /// /// Convert an image to PNG with RGBA /// /// /// /// /// Task ConvertImage(BinaryData binary, ImageConvertOptions? options = null) => throw new NotImplementedException(); }