标签:des style class blog code color
原理:把 pdf 文件转换成 Flash 文件,再显示这个 Flash。
1 .安装print2flashsetup64.exe
2.停止Print2Flash3服务(如果配置了服务并启动了的话)
3.拷贝p2fServer.exe、Print2Flash.exe到安装目标文件夹替换原文件
4.拷贝Print2FlashPrinter3_2.dll到以下文件夹替换原始文件:
C:\Windows\System32\spool\drivers\x64\
以及
C:\Windows\System32\spool\drivers\x64\3\
5.在其菜单“Options”中选择“Print2Flash Service Configuration”,输入管理员用户名和密码。
6.在 Visual Studio 项目中添加 Interop.Print2Flash3.dll,并引用。
7.用以下代码转换 Office 文件为 Flash:
String src = Server.MapPath("1.doc"); String dest = Server.MapPath("1.swf"); Print2Flash3.Server2 server = new Print2Flash3.Server2(); server.ConvertFile(src, dest, null, null, null);
8.用 HTML 代码显示这个 Flash 就可以了。
Print2Flash在线浏览打印pdf文件,布布扣,bubuko.com
标签:des style class blog code color
原文地址:http://www.cnblogs.com/hongdada/p/3807599.html