Relativity.DataExchange.Export.VolumeManagerV2.ImagesRollup.MultiPageImagesRollup
namespace Relativity.DataExchange.Export.VolumeManagerV2.ImagesRollup
{
public abstract class MultiPageImagesRollup : IImagesRollup
{
protected readonly IImage ImageConverter;
protected MultiPageImagesRollup(ExportFile exportSettings, IFile fileWrapper, IStatus status, ILog logger, IImage imageConverter);
public void RollupImages(ObjectExportInfo artifact);
protected abstract void ConvertImage(IList<string> imageList, string tempLocation);
protected abstract string GetExtension();
}
}