C# 将 Word 转化分享为电子期刊

这篇具有很好参考价值的文章主要介绍了C# 将 Word 转化分享为电子期刊。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

 

目录

需求

方案分析

相关库引入

关键代码

Word 转 Pdf

Pdf 转批量 Jpeg

Jpeg 转为电子书

实现效果演示

小结


需求

曾经的一个项目,要求实现制作电子期刊定期发送给企业进行阅读,基本的需求如下:

1、由编辑人员使用 Microsoft Word 编辑期刊内容,上传到系统,生成PDF文件。

2、将生成的PDF文件转化为JPEG文件。

3、将JPEG文件制作目录结构,并生成电子书模式。

方案分析

分析了一下需求,制作了初步的实现方案,主要有以下几点分析:

1、Microsoft Word 仍然是目前比较常用和广泛使用的应用程序,适用于各类人群,他们只需要编写好自己的文稿即可(包括文字、图片、排版),所以可以作为实现电子书的基础。

2、较高版本的 Word 如2016、2019及以上,可以提供另存为PDF的能力,利用API可以将DOCX另存为PDF文件,为进一步生成JPEG图片提供基础。

3、利用改造过的 turn.js 实现电子书及翻页效果。 

相关库引入

实现功能要引入相关库,包括 PdfiumViewer.dll 和 turn.js 相关包,完整下载链接请访问:

https://download.csdn.net/download/michaelline/88647689

另外,在服务器端您需要安装 Microsoft Word 2016 或以上版本。

关键代码

Word 转 Pdf

在操作界面,上传WORD文件,通过API将其另存为PDF文件。

示例代码如下:

        public string WordToPdf(string _filename)
		{
            string resultReport=""; //调试信息
            Object Nothing =System.Reflection.Missing.Value;
//在上传目录下一定要创建一个tempbfile目录用于存储临时文件
			string _file="",_path=Path.GetDirectoryName(_filename)+"\\tempbfile\\",_ext="";

			_file=Path.GetFileNameWithoutExtension(_filename);
			_ext=Path.GetExtension(_filename);
			string _validfilename=Guid.NewGuid().ToString()+_ext;
			string _lastfile=_path+_validfilename;
            string _pdfFile = _path + Guid.NewGuid().ToString() + ".pdf";

            File.Copy(_filename,_lastfile,true);
  	    if(!File.Exists(_lastfile))
		{
                resultReport += "create " + _lastfile + " fail.<br>";
				return "";
		}

            //取得Word文件保存路径
            object filename=_lastfile;
			//创建一个名为WordApp的组件对象
			Word.Application WordApp=new Word.Application();
			//创建一个名为WordDoc的文档对象
			WordApp.DisplayAlerts=Word.WdAlertLevel.wdAlertsNone;
			Word.Document WordDoc=WordApp.Documents.Open(ref filename,ref Nothing,ref Nothing,ref Nothing,ref Nothing,ref Nothing,ref Nothing,ref Nothing,ref Nothing,ref Nothing,ref Nothing,ref Nothing,ref Nothing,ref Nothing,ref Nothing,ref Nothing);
            WordDoc.SpellingChecked = false;
            WordDoc.ShowSpellingErrors = false;
            string    pdfFilename = "";
//导出到pdf文件
                WordDoc.ExportAsFixedFormat(_pdfFile, Microsoft.Office.Interop.Word.WdExportFormat.wdExportFormatPDF,false,Word.WdExportOptimizeFor.wdExportOptimizeForPrint,
                    wdExportRange,pagefrom,pageto,Word.WdExportItem.wdExportDocumentContent,false,true,Word.WdExportCreateBookmarks.wdExportCreateNoBookmarks,
                    true,true,false, ref Nothing);
                if (File.Exists(_pdfFile))
                {
                    pdfFilename = _pdfFile;
                }

            WordDoc.Close(ref Nothing, ref Nothing, ref Nothing);
			//关闭WordApp组件对象
			WordApp.Quit(ref Nothing, ref Nothing, ref Nothing);
  	    return pdfFilename;



        }

Pdf 转批量 Jpeg

生成pdf文件后,我们需要将其转化到指定目录下,批量生成JPEG图片,以备客户端JS进行调用。

方法介绍:

public void PdfToImage(string pdfInputPath, string imageOutputPath,string imageName)

//参数1:PDF文件路径,参数2:输出图片的路径,参数3:图片文件名的前缀,比如输入Img,则会输出Img_001.jpg、Img_002.jpg。。。以此类推。
 

示例代码如下:

//参数1:PDF文件路径,参数2:输出图片的路径,参数3:图片文件名的前缀,比如输入Img,则会输出Img_001.jpg、Img_002.jpg以此类推
public void PdfToImage(string pdfInputPath, string imageOutputPath,string imageName)
        {
            //            PdfRenderFlags.Annotations 改成 PdfRenderFlags.CorrectFromDpi DPI值设置成600 即可高清图像
            if (Directory.Exists(imageOutputPath) == false)
            {
                Directory.CreateDirectory(imageOutputPath);
            }

            var pdf = PdfiumViewer.PdfDocument.Load(pdfInputPath);

            var pdfpage = pdf.PageCount;
            var pagesizes = pdf.PageSizes;
            if (pdfpage == 0)
            {
                pdf.Dispose();
                return;
            }
            var document = PdfiumViewer.PdfDocument.Load(pdfInputPath);
            for (int i = 1; i <= pdfpage; i++)
            {
                Size size = new Size();
                size.Height = (int)pagesizes[(i - 1)].Height;
                size.Width = (int)pagesizes[(i - 1)].Width;
                //可以把".jpg"写成其他形式
                string tmpfile = imageOutputPath + imageName + "_" + i.ToString().PadLeft(3, '0') + ".jpg";
                var stream = new FileStream(tmpfile, FileMode.Create);
                var image = document.Render(i - 1, size.Width, size.Height, 120, 120, PdfRenderFlags.CorrectFromDpi);
                image.Save(stream, System.Drawing.Imaging.ImageFormat.Jpeg);
                stream.Close();

            }
            document.Dispose();
            pdf.Dispose();
        }

Jpeg 转为电子书

根据 turn.js 的格式要求,我们在服务端 Page_Load 事件里生成一个 ViewState,直接输出到客户端,ViewState["result"] 是我们要输出的变量,我们对指定的 jpgTmpPath 变量目录进行遍历,符合jpeg或jpg扩展名的文件则进行记录。

服务端示例代码如下:

protected void Page_Load(object sender, EventArgs e)
    {
        ViewState["result"] = "";  //关键的viewsate,用于存储JPEG地址数组格式
        string _cid=Request.QueryString["cid"];
        if ( _cid!= null)
        {
            string result = "";
            string jpgTmpPath = Request.PhysicalApplicationPath + "\\ebook\\" + _cid + "\\";
            if (Directory.Exists(jpgTmpPath))
            {
                string[] allfs = System.IO.Directory.GetFiles(jpgTmpPath);
                for (int i = 0; i < allfs.Length; i++)
                {
                    string jpgfile = allfs[i].ToLower();
                    string filename = System.IO.Path.GetFileName(jpgfile);
                    if (jpgfile.IndexOf(".jpg") == -1 && jpgfile.IndexOf(".jpeg") == -1)
                    {
                        continue;
                    }
                    result += "\"../../ebook/" + _cid + "/" + filename + "\",\r\n";
                }
                ViewState["result"] = result;
            }
        }
        if (ViewState["result"].ToString() == "")
        {
            Response.Write("没有预览资源");
            Response.End();
        }
}

中间UI代码引用示例:


<head runat="server">
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
    <meta http-equiv="pragma" content="no-cache" />
    <meta http-equiv="Cache-Control" content="no-cache,no-store,must-revalidate"/>
    <meta http-equiv="Expires" content="0" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no"/>
    <meta name="format-detection" content="telephone=no">
    <meta name="apple-mobile-web-app-capable" content="yes"/>
    <title>电子期刊预览</title>
    
    <link rel="stylesheet" type="text/css" href="css/basic.css"/>
    <script type="text/javascript" src="js/jquery.js"></script>
    <script type="text/javascript" src="js/modernizr.2.5.3.min.js"></script>
</head>


<div class="shade">
    <div class="sk-fading-circle">
        <div class="sk-circle1 sk-circle"></div>
        <div class="sk-circle2 sk-circle"></div>
        <div class="sk-circle3 sk-circle"></div>
        <div class="sk-circle4 sk-circle"></div>
        <div class="sk-circle5 sk-circle"></div>
        <div class="sk-circle6 sk-circle"></div>
        <div class="sk-circle7 sk-circle"></div>
        <div class="sk-circle8 sk-circle"></div>
        <div class="sk-circle9 sk-circle"></div>
        <div class="sk-circle10 sk-circle"></div>
        <div class="sk-circle11 sk-circle"></div>
        <div class="sk-circle12 sk-circle"></div>
    </div>
    <div class="number"></div>
</div>

<div class="flipbook-viewport" style="display:none;">
    <div class="previousPage"></div>
    <div class="nextPage"></div>
    <div class="return"></div>
    <img class="btnImg" src="./image/btn.gif" style="display: none"/>
    <div class="container">
        <div class="flipbook">
        </div>

        <div class="pagenumber">
        </div>
    </div>
</div> 

客户端脚本:

在客户端我们接收来自 ViewState["result"] 的变量值,实现电子书的效果:

<script type="text/javascript">
    var loading_img_url = [
    <%=ViewState["result"]%>
    ];
</script>
<script type="text/javascript" src="js/main.js"></script>
<script>
    //自定义弹出层
    (function ($) {
        //ios confirm box
        jQuery.fn.confirm = function (title, option, okCall, cancelCall) {
            var defaults = {
                title: null, //what text
                cancelText: '取消', //the cancel btn text
                okText: '确定' //the ok btn text
            };

            if (undefined === option) {
                option = {};
            }
            if ('function' != typeof okCall) {
                okCall = $.noop;
            }
            if ('function' != typeof cancelCall) {
                cancelCall = $.noop;
            }

            var o = $.extend(defaults, option, { title: title, okCall: okCall, cancelCall: cancelCall });

            var $dom = $(this);

            var dom = $('<div class="g-plugin-confirm">');
            var dom1 = $('<div>').appendTo(dom);
            var dom_content = $('<div>').html(o.title).appendTo(dom1);
            var dom_btn = $('<div>').appendTo(dom1);
            var btn_cancel = $('<a href="#"></a>').html(o.cancelText).appendTo(dom_btn);
            var btn_ok = $('<a href="#"></a>').html(o.okText).appendTo(dom_btn);
            btn_cancel.on('click', function (e) {
                o.cancelCall();
                dom.remove();
                e.preventDefault();
            });
            btn_ok.on('click', function (e) {
                o.okCall();
                dom.remove();
                e.preventDefault();
            });

            dom.appendTo($('body'));
            return $dom;
        };
    })(jQuery);

    if ($(window).width() > 1024 && $(window).height() > 700) {
        //上一页
        $(".previousPage").bind("click", function () {
            var pageCount = $(".flipbook").turn("pages"); //总页数
            var currentPage = $(".flipbook").turn("page"); //当前页
            if (currentPage > 2) {
                $(".flipbook").turn('page', currentPage - 2);
            } else if (currentPage == 2) {
                $(".flipbook").turn('page', currentPage - 1);
            }
        });
        // 下一页
        $(".nextPage").bind("click", function () {
            var pageCount = $(".flipbook").turn("pages"); //总页数
            var currentPage = $(".flipbook").turn("page"); //当前页
            if (currentPage < pageCount - 1) {
                $(".flipbook").turn('page', currentPage + 2);
            } else if (currentPage == pageCount - 1) {
                $(".flipbook").turn('page', currentPage + 1);
            }
        });
    } else {
        //上一页
        $(".previousPage").bind("click", function () {
            var pageCount = $(".flipbook").turn("pages"); //总页数
            var currentPage = $(".flipbook").turn("page"); //当前页
            if (currentPage >= 2) {
                $(".flipbook").turn('page', currentPage - 1);
            } else {
            }
        });
        // 下一页
        $(".nextPage").bind("click", function () {
            var pageCount = $(".flipbook").turn("pages"); //总页数
            var currentPage = $(".flipbook").turn("page"); //当前页
            if (currentPage <= pageCount) {
                $(".flipbook").turn('page', currentPage + 1);
            } else {
            }
        });
    }
    //返回到目录页
   

    $(".return").bind("click", function () {
        $(document).confirm('您确定要返回首页吗?', {}, function () {
            $(".flipbook").turn('page', 1); //跳转页数
        }, function () {
        });
    });
    function gotopage(pageindex) {
        $(".flipbook").turn('page',pageindex);
    }



</script>

实现效果演示

C# 将 Word 转化分享为电子期刊,微软Office计算中心,java,数据库,开发语言

小结

以上提供的代码仅供参考,turn.js 我花了一些时间进行了改造,我们也可以根据自己的需要对样式、控制进行改造。其它的一些细节我们可以进一步调整,如图片生成质量、权限控制等。

另外,还可以实现下载、评价、点赞、收藏等其它功能,这里就不再一一介绍。

以上就是自己的一些分享,时间仓促,不妥之处还请大家批评指正!文章来源地址https://www.toymoban.com/news/detail-773202.html

到了这里,关于C# 将 Word 转化分享为电子期刊的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • 分享一下手机图片如何转化为Word文档

    工作中,很多朋友习惯用手机截图来传递各种文字信息。当我们需要将这些信息输入电脑时,如何将手机图片的内容转换到Word文档中呢?如果能直接把截图内容转换到Word文档,在录入信息时也能节省不少时间。那么今天就和小伙伴们分享一个手机图片如何转化为Word文档的方

    2024年02月16日
    浏览(40)
  • C#用Microsoft.Office.Interop.Word生成WORD公式

    using Word = Microsoft.Office.Interop.Word;                  Word.Application myWord = new Word.Application();                myWord.Visible = true;                object missing = System.Reflection.Missing.Value;                Word.Document myDocument = myWord.Documents.Add(ref missing);                //页边距  

    2024年02月07日
    浏览(56)
  • C# 使用Microsoft.Office.Interop.Word 将WORD转成PDF

        /// summary     /// 测试文件     /// /summary     /// param name=\\\"input\\\"文件名/param     /// returns/returns     [ApiDescriptionSettings(Name = \\\"Getword\\\")]     [HttpGet]     public IActionResult getWord(string wordName)     {         string templatePath = \\\"D:\\\\Template\\\\wordTemplate.docx\\\";         string log = \\\"D:\\\\Templa

    2024年03月21日
    浏览(59)
  • 【Mac】Office 2021 for mac安装包分享,以及如何关闭微软自动更新

    Office在windows中的软件资源和“净化”已经十分成熟了。但是对于mac用户还是比较棘手的,虽然有wps兼容但是有时候特别是excel读取和处理表格时还是得office,这里笔者主要是分享office2021 for mac和交流如何关闭微软更新。 更多详细内容及 安装包领取 可以:阅读原文 2.1 用终端

    2024年02月12日
    浏览(52)
  • C#合并多个Word文档(微软官方免费openxml接口)

    g 详情了解... 

    2024年02月04日
    浏览(50)
  • C#调用office interop接口打开word、excel、ppt,拦截处理关闭、保存事件

    using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; using WordLib = Microsoft.Office.Interop.Word; using ExcelLib = Microsoft.Office.Interop.Excel; using PptLib = Microsoft.Office.Interop.PowerPoint

    2024年02月07日
    浏览(77)
  • 在Microsoft Office Word中体验笔墨飞扬的感觉(如何在Office Word中使用画笔功能)

    单击开始菜单中的“Office”,单击左侧最上方的小房子图标,在右侧单击“安装Office”。 在弹出的网页中单击“安装Office”,在弹出的窗口中单击“安装”。 之后会下载一个安装程序,单击安装程序进行安装。 安装完成后,打开开始菜单,可在“最近添加”一栏看到Word,单

    2024年02月10日
    浏览(52)
  • office的excel中使用,告诉我详细的解决方案,如何变成转化为金额格式

    在Office的Excel中,如果你想将名为\\\"MEREFIELD\\\"的公式结果转换为金额格式,你可以遵循以下详细步骤来实现: 书写MEREFIELD公式 : 首先,在Excel中输入或确认你的MEREFIELD公式。例如,假设这个公式是用来计算某种财务数据,你可能已经在一个单元格(比如A1)中输入了这个公式。

    2024年02月20日
    浏览(65)
  • 微软office认证课程

    本课程为翻译+难点举例,并不是完全原创,大家想看原文请进入微软认证官网点击报名后支付大约99D即可学习以及考试认证。 点我去官网 资源采用了coursera的 个人补充是对前一个知识点的个人理解 Welcome to work smarter with Microsoft Word. In this course, you’ll discover the basics of Micro

    2024年02月08日
    浏览(46)
  • 微软Office正版镜像下载

    下载微软原版镜像文件: (以下镜像均为二合一镜像即包含32位64位版安装时系统自动选择) Office2021中文版的离线安装包下载地址合集: 一、专业增强版(强烈推荐):http://officecdn.microsoft.com/pr/492350f6-3a01-4f97-b9c0-c7c6ddf67d60/media/zh-cn/ProPlus2021Retail.img 二、专业版:http://officecdn.

    2024年02月08日
    浏览(60)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包