C#的Process类调用第三方插件实现PDF文件转SWF文件

在项目开发过程中,有时会需要用到调用第三方程序实现本系统的某一些功能,例如本文中需要使用到的swftools插件,那么如何在程序中使用这个插件,并且该插件是如何将PDF文件转化为SWF文件的呢?接下来就会做一个简单的介绍。

在.NET平台中,对C#提供了一个操作对本地和远程的访问进程,使能够启动和停止系统进程。这个类就是System.Diagnostics.Process,我们首先来了解一下该类。

一.解析System.Diagnostics.Process类

在C#中使用Process类可以提供对本地和远程的访问进程,使能够启动和停止系统进程,并且该类可以对系统进程进行管理。该类中的一些常用方法:Start() ,Kill(),WaitForExit()等方法;StartInfo,FileName,CreateNoWindow等属性。

1.Start()方法:启动(或重用)此 Process 组件的 StartInfo 属性指定的进程资源,并将其与该组件关联。如果启动了进程资源,则为 true;如果没有启动新的进程资源(例如,如果重用了现有进程),则为 false。
具体介绍一下该方法的实现代码:

 /// <devdoc>
    ///  <para>
    ///  <see cref='System.Diagnostics.Process'/>如果过程资源被重用而不是启动,重用的进程与此相关联<see cref ='System.Diagnostics.Process'/>零件。
    ///  </para>
    /// </devdoc>
    [ResourceExposure(ResourceScope.None)]
    [ResourceConsumption(ResourceScope.Machine, ResourceScope.Machine)]
    public bool Start() {
      Close();
      ProcessStartInfo startInfo = StartInfo;
      if (startInfo.FileName.Length == 0)
        throw new InvalidOperationException(SR.GetString(SR.FileNameMissing)); 

      if (startInfo.UseShellExecute) {
#if !FEATURE_PAL
        return StartWithShellExecuteEx(startInfo);
#else
        throw new InvalidOperationException(SR.GetString(SR.net_perm_invalid_val, "StartInfo.UseShellExecute", true));
#endif // !FEATURE_PAL
      } else {
        return StartWithCreateProcess(startInfo);
      }
    }

2.Kill()方法:立即停止关联的进程。Kill 强制终止进程,Kill 方法将异步执行。 在调用 Kill 方法后,请调用 WaitForExit 方法等待进程退出,或者检查 HasExited 属性以确定进程是否已经退出。
具体介绍一下该方法的实现代码:

[ResourceExposure(ResourceScope.Machine)]
    [ResourceConsumption(ResourceScope.Machine)]
    public void Kill() {
      SafeProcessHandle handle = null;
      try {
        handle = GetProcessHandle(NativeMethods.PROCESS_TERMINATE);
        if (!NativeMethods.TerminateProcess(handle, -1))
          throw new Win32Exception();
      }
      finally {
        ReleaseProcessHandle(handle);
      }
    }
SafeProcessHandle GetProcessHandle(int access) {
      return GetProcessHandle(access, true);
    }

    /// <devdoc>
    /// 获取进程的短期句柄,具有给定的访问权限。
     ///如果句柄存储在当前进程对象中,则使用它。
     ///注意,我们存储在当前进程对象中的句柄将具有我们需要的所有访问权限。
    /// </devdoc>
    /// <internalonly/>
    [ResourceExposure(ResourceScope.None)]
    [ResourceConsumption(ResourceScope.Machine, ResourceScope.Machine)]
    SafeProcessHandle GetProcessHandle(int access, bool throwIfExited) {
      Debug.WriteLineIf(processTracing.TraceVerbose, "GetProcessHandle(access = 0x" + access.ToString("X8", CultureInfo.InvariantCulture) + ", throwIfExited = " + throwIfExited + ")");
#if DEBUG
      if (processTracing.TraceVerbose) {
        StackFrame calledFrom = new StackTrace(true).GetFrame(0);
        Debug.WriteLine("  called from " + calledFrom.GetFileName() + ", line " + calledFrom.GetFileLineNumber());
      }
#endif
      if (haveProcessHandle) {
        if (throwIfExited) {
          //因为hasProcessHandle是true,我们知道我们有进程句柄
           //打开时至少要有SYNCHRONIZE访问,所以我们可以等待它
           // zero timeout以查看进程是否已退出。
          ProcessWaitHandle waitHandle = null;
          try {
            waitHandle = new ProcessWaitHandle(m_processHandle);
            if (waitHandle.WaitOne(0, false)) {
              if (haveProcessId)
                throw new InvalidOperationException(SR.GetString(SR.ProcessHasExited, processId.ToString(CultureInfo.CurrentCulture)));
              else
                throw new InvalidOperationException(SR.GetString(SR.ProcessHasExitedNoId));
            }
          }
          finally {
            if( waitHandle != null) {
              waitHandle.Close();
            }
          }
        }
        return m_processHandle;
      }
      else {
        EnsureState(State.HaveId | State.IsLocal);
        SafeProcessHandle handle = SafeProcessHandle.InvalidHandle;
#if !FEATURE_PAL
        handle = ProcessManager.OpenProcess(processId, access, throwIfExited);
#else
        IntPtr pseudohandle = NativeMethods.GetCurrentProcess();
        // Get a real handle
        if (!NativeMethods.DuplicateHandle (new HandleRef(this, pseudohandle),
                          new HandleRef(this, pseudohandle),
                          new HandleRef(this, pseudohandle),
                          out handle,
                          0,
                          false,
                          NativeMethods.DUPLICATE_SAME_ACCESS |
                          NativeMethods.DUPLICATE_CLOSE_SOURCE)) {
          throw new Win32Exception();
        }
#endif // !FEATURE_PAL
        if (throwIfExited && (access & NativeMethods.PROCESS_QUERY_INFORMATION) != 0) {
          if (NativeMethods.GetExitCodeProcess(handle, out exitCode) && exitCode != NativeMethods.STILL_ACTIVE) {
            throw new InvalidOperationException(SR.GetString(SR.ProcessHasExited, processId.ToString(CultureInfo.CurrentCulture)));
          }
        }
        return handle;
      }

    }

3.WaitForExit()方法:指示<see cref ='System.Diagnostics.Process'/>组件等待指定的毫秒数,以使相关联的进程退出。

具体介绍一下该方法的实现代码:

public bool WaitForExit(int milliseconds) {
      SafeProcessHandle handle = null;
     bool exited;
      ProcessWaitHandle processWaitHandle = null;
      try {
        handle = GetProcessHandle(NativeMethods.SYNCHRONIZE, false);
        if (handle.IsInvalid) {
          exited = true;
        }
        else {
          processWaitHandle = new ProcessWaitHandle(handle);
          if( processWaitHandle.WaitOne(milliseconds, false)) {
            exited = true;
            signaled = true;
          }
          else {
            exited = false;
            signaled = false;
          }
        }
      }
      finally {
        if( processWaitHandle != null) {
          processWaitHandle.Close();
        }

        // If we have a hard timeout, we cannot wait for the streams
        if( output != null && milliseconds == -1) {
          output.WaitUtilEOF();
        }

        if( error != null && milliseconds == -1) {
          error.WaitUtilEOF();
        }

        ReleaseProcessHandle(handle);

      } 

      if (exited && watchForExit) {
        RaiseOnExited();
      }

      return exited;
    }
internal ProcessWaitHandle( SafeProcessHandle processHandle): base() {
      SafeWaitHandle waitHandle = null;
      bool succeeded = NativeMethods.DuplicateHandle(
        new HandleRef(this, NativeMethods.GetCurrentProcess()),
        processHandle,
        new HandleRef(this, NativeMethods.GetCurrentProcess()),
        out waitHandle,
        0,
        false,
        NativeMethods.DUPLICATE_SAME_ACCESS);

      if (!succeeded) {
        Marshal.ThrowExceptionForHR(Marshal.GetHRForLastWin32Error());
      } 

      this.SafeWaitHandle = waitHandle;
    }

4.StartInfo属性:获取或设置要传递给 Process 的 Start 方法的属性。StartInfo 表示用于启动进程的一组参数。 调用 Start 时,StartInfo 用于指定要启动的进程。 唯一必须设置的 StartInfo 成员是 FileName 属性。

具体介绍一下该方法的实现代码:

 [Browsable(false), DesignerSerializationVisibility(DesignerSerializationVisibility.Content), MonitoringDescription(SR.ProcessStartInfo)]
    public ProcessStartInfo StartInfo {
      get {
        if (startInfo == null) {
          startInfo = new ProcessStartInfo(this);
        }
        return startInfo;
      }
      [ResourceExposure(ResourceScope.Machine)]
      set {
        if (value == null) {
          throw new ArgumentNullException("value");
        }
        startInfo = value;
      }
    }

5.CreateNoWindow属性:获取或设置指示是否在新窗口中启动该进程的值。

具体介绍一下该方法的实现代码:

[
    DefaultValue(false),
    MonitoringDescription(SR.ProcessCreateNoWindow),
    NotifyParentProperty(true)
    ]
    public bool CreateNoWindow {
      get { return createNoWindow; }
      set { createNoWindow = value; }
    }

以上简单介绍了该类的三种常用方法和两种常用属性,在实际的开发项目中无须对每个属性方法和属性的底层实现做全面的了解,但建议在学习该类的时候,适当的了解一下某一些类的方法实现,有助于我们很好的掌握该类。

二.如何实现PDF文件转化为SWF文件

在项目如果需要将PDF文件转换为SWF文件,可以在项目中引入Swftools插件,该插件的主要功能:PDF到SWF转换器。 每页生成一帧。 使您能够在Flash Movie中拥有完全格式化的文本,包括表格,公式,图形等。 它基于Derek B. Noonburg的xpdf PDF解析器。

简单介绍一下该插件的常用参数:

-h , –help                      Print short help message and exit              打印帮助信息

-V , –version                Print version info and exit                        打印版本号

-o , –output file.swf         Direct output to file.swf. If file.swf contains ‘13568621′ (file13568630.swf), then each page指定输出的swf文件名

-P , –password password       Use password for deciphering the pdf.指定打开pdf的密码

-z , –zlib                    Use Flash 6 (MX) zlib compression.使用Flash 6的zlib压缩机制

-i , –ignore                  Allows pdf2swf to change the draw order of the pdf. This may make the generated允许程序修改pdf的绘制顺序,可能会导致结果与原来有差异

以上是几种常用的参数,具体擦参数列表详见:http://www.swftools.org/

对实现本次操作的类和插件做了一个简单的介绍,接下来提供一个具体实现该功能的操作方法:

 /// <summary>
    /// PDF格式转为SWF
    /// </summary>
    /// <param name="pdfPathParameter">原视频文件地址,如/a/b/c.pdf</param>
    /// <param name="swfPathParameter">生成后的FLV文件地址,如/a/b/c.swf</param>
    /// <param name="beginpage">转换开始页</param>
    /// <param name="endpage">转换结束页</param>
    /// <param name="photoQuality">照片质量</param>
    /// <returns></returns>
    public static bool PdfConversionSwf(string pdfPathParameter, string swfPathParameter, int beginpage, int endpage, int photoQuality)
    {
      if (string.IsNullOrEmpty(pdfPathParameter))
      {
        throw new ArgumentNullException(pdfPathParameter);
      }
      if (string.IsNullOrEmpty(swfPathParameter))
      {
        throw new ArgumentNullException(swfPathParameter);
      }
      if (endpage < beginpage)
      {
        throw new ArgumentException("起始页数大于结束页数");
      }
      if (photoQuality <= 0)
      {
        throw new ArgumentException("照片质量错误");
      }
      var exe = HttpContext.Current.Server.MapPath("~/tools/swftools-2013-04-09-1007.exe");
      var pdfPath = HttpContext.Current.Server.MapPath(pdfPathParameter);
      var swfPath = HttpContext.Current.Server.MapPath(swfPathParameter);
      Process p = null;
      try
      {
        if (!File.Exists(exe) || !File.Exists(pdfPath))
        {
          return false;
        }
        if (File.Exists(swfPath))
        {
          File.Delete(swfPath);
        }
        var sb = new StringBuilder();
        sb.Append(" \"" + pdfPath + "\"");
        sb.Append(" -o \"" + swfPath + "\"");
        sb.Append(" -s flashversion=9");
        sb.Append(" -s disablelinks");
        if (endpage > GetPageCount(pdfPath))
        {
          endpage = GetPageCount(pdfPath);
        }
        sb.Append(" -p " + "\"" + beginpage + "" + "-" + endpage + "\"");
        //SWF中的图片质量
        sb.Append(" -j " + photoQuality);
        var command = sb.ToString();
        //Process提供对本地和远程的访问进程,使能够启动和停止系统进程。
        p = new Process
        {
          StartInfo =
          {
            FileName = exe,
            Arguments = command,
            WorkingDirectory = HttpContext.Current.Server.MapPath("~/Bin/"),
            UseShellExecute = false,
            RedirectStandardError = true,
            CreateNoWindow = false
          }
        };
        //启动线程
        p.Start();
        //开始异步读取
        p.BeginErrorReadLine();
        //等待完成
        p.WaitForExit();
        //开始同步读取
        //p.StandardError.ReadToEnd();
        if (!File.Exists(swfPath))
          return false;
        return true;
      }
      catch (IOException ioex)
      {
        throw new IOException(ioex.Message);
      }
      catch (Exception ex)
      {
        throw new Exception(ex.Message);
      }
      finally
      {
        if (p != null)
        {
          //关闭进程
          p.Close();
          //释放资源
          p.Dispose();
        }
      }

    }

三.小结

在本文中介绍了在C#中如何操作外部程序和线程的类System.Diagnostics.Process,并介绍了该类的一些常用方法的底层实现代码,如果需要对该类进行详细的了解,可以根据MSDN和.NET底层源码的相关注释和文章进行细致的学习。在介绍完实现操作的类的同时,也对Swftools插件做了一个说明,并列举了相关的参数,如果在项目中有较高的要求,可以根据官方提供的API文档进行重构。

在项目开发中,任何一个功能是无法做法完成所有的功能,在编码功能时,只能尽可能的考虑到方法的通用性,在理解了某一个类和某一个插件的基本原理和使用方法后,可以根据对应的API进行添加新功能。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

(0)

相关推荐

  • 如何使用C#在PDF文件添加图片印章

    文档中添加印章可以起一定的作用,比如,防止文件随意被使用,或者确保文档内容的安全性和权威性.C#添加图片印章其实也有很多实现方法,这里我使用的是免费的第三方软件Free Spire.PDF,向大家阐述如何以编程的方式在PDF文件中添加图片印章. 具体步骤如下: 在此之前,我们需要添加dll文件作为引用.添加引用 → 浏览 → Spire.XLS folder → Bin → .NET 2.0/3.5/4.0/4.5/4.0 ClientProfile → Spire.XLS.dll. 第一步:首

  • C#获取指定PDF文件页数的方法

    本文实例讲述了C#获取指定PDF文件页数的方法.分享给大家供大家参考.具体如下: using System; using System.IO; using System.Text.RegularExpressions; using System.Windows.Forms; namespace RobvanderWoude { class PDFPageCount { static int Main( string[] args ) { #region Get help if ( args.Le

  • C#如何给PDF文件添加水印

    水印种类及功能介绍 PDF水印分为两种:文本水印和图片水印.文本水印一般被用在商业领域,提醒读者该文档是受版权保护的,其他人不能抄袭或者免费使用.除了这个特征,水印还可以用来标记这个文档 的一些基本状态信息,例如是草稿状态还是最终版本?图片水印是美化PDF文件的一个很好的选择,它可以用多彩的.独特的图片来作为PDF文件的背景.那么,怎样用编程的方式给PDF文件 添加水印呢?有很多种实现方法,其中一种最快最容易的办法也许是用第三方软件,例如Spire.PDF.本文会阐述怎样用免费的第三方软件Spi

  • C#实现PDF文件添加图片背景

    本文实例讲述了C#使用iTextSharp设置PDF所有页面背景图功能的方法.分享给大家供大家参考.具体如下: 在生成PDF 的时候,虽然可以在页面中设置背景图. 但有些内容过长夸页面的时候,就很难设置背景图,变成了空白背景的页面! 以下是重新生成每一页PDF背景图功能代码! public void SetPdfBackground(string pdfFilePath) { //重新生成的 PDF 的路径 string destFile = HttpContext.Current.Server

  • C# WinForm打开PDF文件并在窗体中显示

    1.添加引用 工具箱---右键---选择项--COM组件--Adobe PDF Reader 2.使用方法 复制代码 代码如下: OpenFileDialog openFile=new OpenFileDialog(); open..Filter = "PDF文件|*.pdf"; openFile.ShowDialog(); axAcroPDF1.src = openFile.FileName; //axAcroPDF1.LoadFile(of.FileName);   //使用方法二

  • C#实现pdf导出 .Net导出pdf文件

    最近碰见个需求需要实现导出pdf文件,上网查了下代码资料总结了以下代码.可以成功的实现导出pdf文件. 在编码前需要在网上下载个itextsharp.dll,此程序集是必备的.楼主下载的是5.0版本,之前下了个5.4的似乎不好用. 下载之后直接添加引用. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Webpdf.aspx.cs" Inherits="Web导出

  • C#生成PDF文件流

    本文实例为大家分享了C#生成PDF文件流的具体代码,供大家参考,具体内容如下 1.设置字体 static BaseFont FontBase = BaseFont.CreateFont("C:\\WINDOWS\\FONTS\\STSONG.TTF", BaseFont.IDENTITY_H, BaseFont.EMBEDDED); static iTextSharp.text.Font bodyFont = new iTextSharp.text.Font(FontBase, 12)

  • C#实现TIF图像转PDF文件的方法

    本文实例讲述了C#实现TIF图像转PDF文件的方法.分享给大家供大家参考.具体实现方法如下: 这里介绍使用TIFtoPDF的用法.该工具可以将多个TIF图像文件合并成一个PDF文件 TIFtoPDF.rar文件点击此处本站下载. Program.cs文件如下: using System; using System.Collections.Generic; using System.IO; using iTextSharp.text; using iTextSharp.text.pdf; usi

  • 如何使用C#程序给PDF文件添加编辑域

    PDF文档通常是不能编辑的,但有些时候需要在PDF文档中填写日期或签名之类,就需要在PDF有能编辑的文本域,本文介绍怎样用C#来实现这一功能. 环境 工具:VS2015 语言:C# 操作PDF类库:iTextSharp 5.5.10 生成的PDF预览的工具:Skim.福昕阅读器.Acrobat Reader 代码实现 获取文档的页数 PdfReader reader = new PdfReader(@"C:\WorkSpace\1.pdf"); int count = reader.N

  • 用C#来解析PDF文件

    1. 介绍 这个项目让你可以去读取并解析一个PDF文件,并将其内部结构展示出来. PDF文件的格式标准文档可以从Adobe那儿获取到. 这个项目基于"PDF指南,第六版,Adobe便携文档格式1.7 2006年11月". 它是一个恐怕有1310页的大部头. 本文提供了对这份文档的简洁概述. 与此相关的项目定义了用来读取和解析PDF文件的C#类. 为了测试这些类,附带的测试程序PdfFileAnalyzer让你可以去读取一个PDF文件,分析它并展示和保存结果. 程序将PDF文件分割成单独

随机推荐