Hi All,
The program I am using currently to evaluate Groupdocs is taking me around 11 seconds to convert each RTF to TIFF file. May I know if 11 seconds is the normal time that Groupdocs take for such conversion? We have a huge amount of files to convert (around a million files) and the time taken for each conversion is therefore significant in our evaluation of the product.
This is slightly on the slower end compared to another product that I am evaluating, which takes less than 1 second (~500 milliseconds) to convert each file.
I got the conversion method from the Groupdocs website and is as follows:
public static void Run()
{
string outputFolder = @“D:\Program Files\VS Community\Projects\GD\ConsoleApp1\Output”;
string outputFileTemplate = Path.Combine(outputFolder, “Images example_GroupDocs3 (adjusted).tiff”);
using (Converter converter = new Converter(@"D:\Program Files\VS Community\Projects\GD\ConsoleApp1\Input\Images example.rtf"))
{
ImageConvertOptions options = new ImageConvertOptions
{
Format = ImageFileType.Tiff,
HorizontalResolution = 300, VerticalResolution = 300
};
converter.Convert(outputFileTemplate, options);
}
Console.WriteLine("\nConversion to jpg completed successfully. \nCheck output in {0}", outputFolder);
}
Hope you could advise me on this. Thanks!