Convert PDF to DOC using C# exports the small size images like thumbnails. The output should be same page size of PDF
input.pdf (35.6 KB)
// Load the source PDF file
using (var converter = new Converter("input.pdf"))
{
var options = converter.GetPossibleConversions()["doc"].ConvertOptions;
// Convert to DOC format
converter.Convert("converted.doc", options);
}