Generate a thumbnail of a Word document

后端 未结 3 1841
感动是毒
感动是毒 2021-02-09 05:46

I have a website where users upload Word documents and I want to display thumbnails of these word documents. If anyone of you knows how to display the first page of a Word file

3条回答
  •  故里飘歌
    2021-02-09 06:24

    http://blogs.msdn.com/windowssdk/archive/2009/06/12/windows-api-code-pack-for-microsoft-net-framework.aspx

    ShellFile shellFile = ShellFile.FromFilePath(pathToYourFile);
    Bitmap shellThumb = shellFile.Thumbnail.ExtraLargeBitmap;
    

    It's Microsoft's API Code Pack

提交回复
热议问题