I want to generate thumbnail from the excel, pdf, doc, txt, etc. in asp.net mvc 4 application.
Is there any way to do it.
(Any samples)
I want to generate thumbnail from the excel, pdf, doc, txt, etc. in asp.net mvc 4 application.
Is there any way to do it.
(Any samples)
see this SO question answer. might help for your requirement
ShellFile shellFile = ShellFile.FromFilePath(pathToYourFile);
Bitmap shellThumb = shellFile.Thumbnail.ExtraLargeBitmap;