c#

如何用C#语言实现word转换成pdf文件,其中处理图片,文字是怎么实现的 

解决方案 »

  1.   

    http://www.cnblogs.com/ghd258/articles/258060.html
      

  2.   

    这个很简单,我刚刚做过。使用Aspose.Words.dll这个动态库,一句话,直接就转换了:
     Document doc = new Document(tempFilePath);
                string imgPath = path2 + Guid.NewGuid().ToString() + ".pdf";
                doc.Save(imgPath, SaveFormat.pdf);试一下,很简单,有问题可以加我qq:1660036586
      

  3.   

    本帖最后由 net_lover 于 2012-07-06 11:38:19 编辑
      

  4.   

    1、office自带
    2、GDI+ 画出来也行
    g.drawString