第一步:将pdf文件转为swf文件,具体步骤如下:
1,首先下载并安装SWFTools工具
2,然后使用命令 pdf2swf 123.pdf -o 123.swf
2.1 这里注意SWFTools 工具安装路径的问题,如果安装在C盘 则直接使用命令C:\pdf2swf 123.pdf -o 123.swf,但是如果安装在D盘目录下 则需要将命令切换到D盘在使用D:\pdf2swf 123.pdf -o 123.swf该指令。
切换指令cd 回车,在输入D: 回车即可
如果SWFTools工具安装在C盘的SWFTools文件夹下 则输入命令行 C:\SWFTools\pdf2swf 123.pdf -o 123.swf
2.2 要转换的pdf文件必须和SWFTools安装路径保持一致,否则无法找到该pdf文件。
这样即可实现pdf文件转换为swf文件。
第二步:通过FlexPaperViewer将转换好的swf文件显示在页面上
1,页面添加jquery.js,flexpaper_flash.js和flexpaper_flash_debug.js的引用
2,将已经转换好的swf和FlexPaperViewer.swf放在web应用的某个文件夹下,本实例中放在ReportTemplate文件夹下
3,如下在页面中这样编码即可实现PDF文件的在线预览功能
= = = FlexPaperViewer( , , { : { : escape(), : , : , : , : , : , : , : , : , : , : , : , : , : , : , : , : , : , : , : }});
<!--这句是关键: SwfFile: 指示导入的.swf的路径-->
以下附上通过C#程序将pfd文件转为swf文件的代码实现过程:
public static class PSD2swfHelper { /// /// 转换所有的页,图片质量80% /// /// =PDF文件地址 /// =生成后的SWF文件地址 public static bool PDF2SWF(string pdfPath, string swfPath) { return PDF2SWF(pdfPath, swfPath, 1, GetPageCount(HttpContext.Current.Server.MapPath(pdfPath)), 80); } /// /// 转换前N页,图片质量80% /// /// =PDF文件地址 /// =生成后的SWF文件地址 /// =页数 public static bool PDF2SWF(string pdfPath, string swfPath, int page) { return PDF2SWF(pdfPath, swfPath, 1, page, 80); } /// /// PDF格式转为SWF /// /// =PDF文件地址 /// =生成后的SWF文件地址 /// =转换开始页 /// =转换结束页 private static bool PDF2SWF(string pdfPath, string swfPath, int beginpage, int endpage, int photoQuality) { string exe = HttpContext.Current.Server.MapPath("pdf2swf.exe"); pdfPath = HttpContext.Current.Server.MapPath(pdfPath); swfPath = HttpContext.Current.Server.MapPath(swfPath); if (!System.IO.File.Exists(exe) || !System.IO.File.Exists(pdfPath) || System.IO.File.Exists(swfPath)) { return false; } StringBuilder sb = new StringBuilder(); sb.Append(" \"" + pdfPath + "\""); sb.Append(" -o \"" + swfPath + "\""); sb.Append(" -s flashversion=9"); sb.Append(" -s languagedir=\"E:\\xpdf\\xpdf-chinese-simplified\""); if (endpage > GetPageCount(pdfPath)) endpage = GetPageCount(pdfPath); sb.Append(" -p " + "\"" + beginpage + "" + "-" + endpage + "\""); sb.Append(" -j " + photoQuality); string Command = sb.ToString(); System.Diagnostics.Process p = new System.Diagnostics.Process(); p.StartInfo.FileName = exe; p.StartInfo.Arguments = Command; p.StartInfo.WorkingDirectory = HttpContext.Current.Server.MapPath("~/Bin/"); p.StartInfo.UseShellExecute = false; p.StartInfo.RedirectStandardError = true; p.StartInfo.CreateNoWindow = false; p.Start(); p.BeginErrorReadLine(); p.WaitForExit(); p.Close(); p.Dispose(); return true; } /// /// 返回页数 /// /// =PDF文件地址 private static int GetPageCount(string pdfPath) { byte[] buffer = System.IO.File.ReadAllBytes(pdfPath); int length = buffer.Length; if (buffer == null) return -1; if (buffer.Length = = =