C# PPT Operator

<pre name="code" class="csharp">using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.Office.Core;
using PPT = Microsoft.Office.Interop.PowerPoint;
using System.Windows;
using System.Collections;
using System.Windows.Forms;
using System.IO;
using System.Reflection;
using Tools.functionModel.file;
using System.Drawing;
using System.Drawing.Imaging;
//using System.Windows.Controls;

namespace Tools.baseModel.common {
    /// <summary>
    /// PPT文档操作实现类.
    /// </summary>
    public class pptBase {
        private string temPath = "";
        private string pptPath = "";

        #region=========基本的参数信息=======
        PPT.Application pptApp;                 //PPT应用程序变量

        public PPT.Application PptApp {
            get { return pptApp; }
            set { pptApp = value; }
        }
        PPT.Presentation pptDoc;                //PPT文档变量
        PPT.Slides pptSlides = null;
        PPT.Slide pptSlide = null;
        private int pageCount=0;
        #endregion

        public PPT.Shapes Shapes {
            get { return pptSlide.Shapes; }
        }

        public pptBase(string path) {
            this.temPath = commonPath.fiberFolder + "/other/template.pot";
            this.pptPath = path;
            //如果已存在,则删除
            if (File.Exists((string)pptPath)) {
                File.Delete((string)pptPath);
            }
            FileInfo file = new FileInfo(this.temPath);
            pptApp = new PPT.Application();    //初始化
            pptApp.Visible = MsoTriState.msoTrue;
            pptDoc = pptApp.Presentations.Open(file.FullName, MsoTriState.msoFalse, MsoTriState.msoTrue, MsoTriState.msoTrue);
            pptSlides = pptDoc.Slides;
            //pptDoc = pptApp.Presentations.Add(Microsoft.Office.Core.MsoTriState.msoFalse);
        }

        public void AddPage() {
            pageCount++;
            //pptDoc.Slides.Add(pageCount, PPT.PpSlideLayout.ppLayoutText);
            pptSlide = pptSlides.Add(pageCount, PPT.PpSlideLayout.ppLayoutTitleOnly);
        }

        public void InsertPage(int index) {
            PPT.CustomLayout ppLayout = pptSlide.CustomLayout;
            pptSlide = pptSlides.AddSlide(index, ppLayout);
            pageCount++;
        }

        #region 添加文本框
        public PPT.Shape drawText(PPT.Shapes shapes, pptText textBox) {
            PPT.Shape shape = null;
            if (textBox == null || textBox.Location.IsEmpty || textBox.FrameSize.IsEmpty)
                return shape;
            shape = shapes.AddTextbox(textBox.Orientation, textBox.X, textBox.Y, textBox.Width, textBox.Height);
            shape.TextFrame.HorizontalAnchor = textBox.HorizontalAnchor;
            shape.TextFrame.VerticalAnchor = textBox.VerticalAnchor;
            shape.TextFrame.TextRange.Font.Color.RGB = colorFormat(textBox.ForeColor);
            shape.TextFrame.TextRange.Font.Bold = textBox.Font.Bold ? MsoTriState.msoTrue : MsoTriState.msoFalse;
            shape.TextFrame.TextRange.Font.Italic = textBox.Font.Italic ? MsoTriState.msoTrue : MsoTriState.msoFalse;
            shape.TextFrame.TextRange.Font.Underline = textBox.Font.Underline ? MsoTriState.msoTrue : MsoTriState.msoFalse;
            shape.TextFrame.TextRange.Font.Size = textBox.Font.Size;
            shape.TextFrame.TextRange.Font.Name = textBox.Font.Name;
            shape.TextFrame.MarginLeft = 0;
            shape.TextFrame.MarginRight = 0;
            if (textBox.BackColor == Color.Transparent) {
                shape.Fill.Visible = Microsoft.Office.Core.MsoTriState.msoFalse;
            } else {
                shape.Fill.BackColor.RGB = colorFormat(textBox.BackColor);
            }
            shape.Line.Weight = textBox.BoardWeight;
            if (textBox.BoardColor == Color.Transparent) {
                shape.Line.Visible = Microsoft.Office.Core.MsoTriState.msoFalse;
            } else {
                shape.Line.BackColor.RGB = colorFormat(textBox.BoardColor);
            }
            shape.Line.DashStyle = textBox.BoardStyle;
            shape.TextFrame.TextRange.Text = textBox.Text;
            return shape;
        }
        #endregion 

        #region 添加基本图形
        //画直线
        public PPT.Shape drawLine(PPT.Shapes shapes, float beginX, float beginY, float endX, float endY) {
            PPT.Shape shape = shapes.AddLine(beginX, beginY, endX, endY);
            return shape;
        }
        //画直线
        public PPT.Shape drawLine(PPT.Shapes shapes, float beginX, float beginY, float endX, float endY, float weight, Color foreColor) {
            PPT.Shape shape = shapes.AddLine(beginX, beginY, endX, endY);
            shape.Line.ForeColor.RGB = colorFormat(foreColor);  //线条颜色
            shape.Line.Weight = weight;                         //线条粗细
            return shape;
        }
        //画矩形
        public PPT.Shape drawRectangle(PPT.Shapes shapes, float beginX, float beginY, float width, float height) {
            PPT.Shape shape = shapes.AddShape(MsoAutoShapeType.msoShapeRectangle, beginX, beginY, width, height);
            return shape;
        }
        //画矩形
        public PPT.Shape drawRectangle(PPT.Shapes shapes, float beginX, float beginY, float width, float height, float weight, Color foreColor, Color backColor) {
            PPT.Shape shape = shapes.AddShape(MsoAutoShapeType.msoShapeRectangle, beginX, beginY, width, height);
            shape.Line.ForeColor.RGB = colorFormat(foreColor);  //线条颜色
            shape.Fill.BackColor.RGB = colorFormat(backColor);  //填充颜色
            shape.Line.Weight = weight;                         //线条粗细
            return shape;
        }
        //画箭头
        public PPT.Shape drawArrow(PPT.Shapes shapes, float beginX, float beginY, float endX, float endY,float weight) {
            float width=(float)Math.Sqrt(Math.Pow(endX-beginX,2)+Math.Pow(endY-beginY,2));
            float startX = (beginX + endX) / 2-width/2;
            float startY = (beginY + endY) / 2;
            float angle = endX==beginX?(endY>beginY?90:-90):(float)Math.Atan((endY - beginY) / (endX - beginX));
            angle = (float)(angle / Math.PI * 180.0);
            angle = angle < 0 ? 180.0f + angle : angle;
            PPT.Shape shape = shapes.AddShape(MsoAutoShapeType.msoShapeRightArrow, startX, startY, width, weight);
            shape.Rotation = angle;
            return shape;
        }
        //画箭头
        public PPT.Shape drawRightArrow(PPT.Shapes shapes, float beginX, float beginY, float endX, float endY, float weight, Color foreColor, Color backColor) {
            PPT.Shape shape = drawArrow(shapes, beginX, beginY, endX, endY, weight);
            shape.Line.ForeColor.RGB = colorFormat(foreColor);  //线条颜色
            shape.Fill.BackColor.RGB = colorFormat(backColor);  //填充颜色
            return shape;
        }
        #endregion

        #region 添加图片
        public PPT.Shape AddPicture(PPT.Shapes shapes, string picPath, float beginX, float beginY, float width, float height) {
            PPT.Shape shape = null;
            if (!File.Exists(picPath)) {
                throw new Exception("图片文件不存在!");
            } else {
                shape = shapes.AddPicture(picPath, MsoTriState.msoFalse, MsoTriState.msoTrue, beginX, beginY, width, height);
            }
            return shape;
        }
        public PPT.Shape AddPicture(PPT.Shapes shapes, Bitmap bitmap, float beginX, float beginY, float width, float height) {
            PPT.Shape shape = null;
            string picPath=System.IO.Path.GetTempPath()+"bitmap.bmp";
            bitmap.Save(picPath, ImageFormat.Bmp);
            shape = shapes.AddPicture(picPath, MsoTriState.msoFalse, MsoTriState.msoTrue, beginX, beginY, width, height);
            return shape;
        }
        #endregion 

        public void Close() {
            try {
                //WdSaveFormat为PPT文档的保存格式
                PPT.PpSaveAsFileType format = PPT.PpSaveAsFileType.ppSaveAsDefault;
                //将pptDoc文档对象的内容保存为PPT文档
                pptDoc.SaveAs(pptPath, format, Microsoft.Office.Core.MsoTriState.msoFalse);

                //关闭pptDoc文档对象
                pptDoc.Close();
                //关闭pptApp组件对象
                pptApp.Quit();
            } catch (Exception ex) {
                outPrint.appendText("保存或关闭PPT出错,错误信息:" + ex.Message);
            }
        }
        /// <summary>
        /// 系统颜色转换为PPT支持的颜色值
        /// </summary>
        private int colorFormat(System.Drawing.Color color) {
            int value = ((color.B * 256 + color.G) * 256) + color.R;//Office RGB与 System.Drawing.Color.RGB顺序相反
            return value;
        }
    }
}

版权声明:本文为博主原创文章,未经博主允许不得转载。

时间: 2024-10-10 06:44:07

C# PPT Operator的相关文章

巧抛纤誊怕t6ecba5k43

在不久前落幕的2016年全国两会上,国务院国有企业改革领导小组组长马凯对外界表示:"去年是国企改革方案制定的一年,今年是扎扎实实的落实年." 该人士表示,整体思路"就是一个放开一个监管,围绕市场化进行改革,同时防止国有资产流失". 两年前,财政部为"什么人能够持股"一事,进行了多次讨论.财政部相关政策制定部门人士认为,目前最纠结的问题是:"哪些人可以持股?管理层.技术骨干还是全员持股?这个问题正在讨论中." <国有科技型

谒昧谀折晾aw2hr6m6

2015年 9月13日,国务院印发<关于深化国有企业改革的指导意见>,这也是被认为是国企改革顶层设计方案正式出台. 另一位国资委人士向记者证实:将会有包括员工持股在内的措失出台. <中国经营报>记者获悉,在2015年19项国企改革相关政策推出后,2016年将有21项左右的国企改革政策出台,包括国企重组.员工持股.薪酬改革等内容. 在不久前落幕的2016年全国两会上,国务院国有企业改革领导小组组长马凯对外界表示:"去年是国企改革方案制定的一年,今年是扎扎实实的落实年.&qu

仕性欺掌米r460y7n9a5

<国有科技型企业股权和分红激励暂行办法>出台后"在企业和员工两个层面上对国企股权和分红激励划定了明确的标准和上限.一方面属于防止国有资产流失的正常举措,另一方面对国企科技人才获得分红和股权激励来说,也是一颗'定心丸'". "投行们最反对员工持股这一行为,而很多央企都有上市规划."该人士表示. 马凯强调,以提高国有资本效益,增强国有企业活力为核心,各个制度各个方面都要进行改革,一切不利于调动企业积极性.不利于调动和发挥企业家创造性的制度都应改革. 2016

酝宋林弦巯xc0gsh24y5zdwyu

为了防止国有资产流失,该文件同时指明,大型企业的股权激励总额不超过企业总股本的5%:中型企业的股权激励总额不超过企业总股本的10%:小.微型企业的股权激励总额不超过企业总股本的30%,且单个激励对象获得的激励股权不得超过企业总股本的3%. 此外,企业不能因实施股权激励而改变国有控股地位. 该人士表示,整体思路"就是一个放开一个监管,围绕市场化进行改革,同时防止国有资产流失". "十八届三中全会提出,在混合所有制企业可以搞员工持股,但这些事情比较谨慎,既有经验又有教训.&quo

靡掀诬雄闻i27i086n

"国有资产流失是一顶非常可怕的帽子,很多人怕犯错误,不敢推进员工激励.混合所有制等改革." 员工持股启动 2016年2月,国资委公布了<国有科技型企业股权和分红激励暂行办法>.国资委指出,为进一步激发广大技术和管理人员的积极性和创造性,促进国有科技型企业健康可持续发展,经国务院同意,在中关村(8.90, -0.14, -1.55%)国家自主创新示范区股权和分红激励试点办法的基础上,制定了<国有科技型企业股权和分红激励暂行办法>. <中国经营报>记者获

颂瓶团蕴谂sc098c29411ar9

随着国企改革的深入,2016年将有更多的国企改革亮点值得期待. 李锦同时指出:"改革在执行时又要强调'红线'意识,加强监管以防止国有资产的流失." 两年前,财政部为"什么人能够持股"一事,进行了多次讨论.财政部相关政策制定部门人士认为,目前最纠结的问题是:"哪些人可以持股?管理层.技术骨干还是全员持股?这个问题正在讨论中." "十八届三中全会提出,在混合所有制企业可以搞员工持股,但这些事情比较谨慎,既有经验又有教训."该人士表

淋伦彰酥桃em56pp30sp8x49kmwws

而针对这一问题,国资委内部人士也向记者表示:"员工持股的政策制定非常困难." 为了防止国有资产流失,该文件同时指明,大型企业的股权激励总额不超过企业总股本的5%:中型企业的股权激励总额不超过企业总股本的10%:小.微型企业的股权激励总额不超过企业总股本的30%,且单个激励对象获得的激励股权不得超过企业总股本的3%. 此外,企业不能因实施股权激励而改变国有控股地位. 2015年 9月13日,国务院印发<关于深化国有企业改革的指导意见>,这也是被认为是国企改革顶层设计方案正式出

献拒栖汤诼uykalgf2

"国有资产流失是一顶非常可怕的帽子,很多人怕犯错误,不敢推进员工激励.混合所有制等改革." 前述国资委人士认为:"一般的企业不适合员工持股,一个万人大厂,所有员工都持股,没有意义.容易造成福利性的持股.实际上,改革30年,已经证明,全员持股不是一个好办法,要分企业.分行业,根据它的特点进行持股." 在不久前落幕的2016年全国两会上,国务院国有企业改革领导小组组长马凯对外界表示:"去年是国企改革方案制定的一年,今年是扎扎实实的落实年." 员工持股

啬苈沿临肯m8b417pl

"投行们最反对员工持股这一行为,而很多央企都有上市规划."该人士表示. 据报道,国务院国资委副秘书长彭华岗日前在深入推进国企国资改革研讨会上表示,今年将围绕重点难点问题开展"十项改革试点",通过试点取得突破.多点开花.彭华岗透露,过去一年国企改革取得重大突破和进展,17家省级国资委和40户中央企业提出方案.公司制股份制改革成效显著,全国国有企业改制面已达80%:法人治理结构不断完善,2015年中央企业建设规范董事会的企业增加11户,总数达到85户. "员工