doc(x) xls(x) ppt(x) pdf 的在线预览

说明:

达到功能:doc(x) xls(x) ppt(x) pdf 的在线预览

基本思路:

doc(x) ==> pdf ==> swf ==> 输出预览
ppt(x) ==> pdf ==> swf ==> 输出预览
xls(x) ==> html ==> 输出预览
pdf ==> swf ==> 输出预览

使用软件:

doc(x) ==> pdf: Microsoft Office / OpenOffice
ppt(x) ==> pdf: Microsoft Office / OpenOffice
xls(x) ==> html: Microsoft Office / OpenOffice
pdf ==> swf:SWFTools 网址:http://www.swftools.org/
swf输出预览:FlexPaper 网址:http://flexpaper.com/

具体应用:

1、doc(x) ==> pdf (使用word)

注意:

1、若为相对路径,此相对路径 并非相对 PHP文件
2、方法中传入需要是变量,不能直接传递字符串
3、SaveAs方法的第二个参数 需为 17 (指定保存类型)
4、保存的文件 必须是补充名的
PHP代码如下:

$docx_name = "E:/wamp/www/a.docx";
$pdf_name = "E:/wamp/www/b.pdf";

$docx = new COM("word.application") or die();
$docx->Visible = 1;  //1-显示出来,0-后台操作
$type = 17;  //保存类型
$docx->Documents->Open($docx_name)->SaveAs($pdf_name, $type);
$docx->Quit();

2、ppt(x) ==> pdf (使用ppt)

$ppt_name = "E:/wamp/www/a.pptx";
$pdf_name = "E:/wamp/www/a.pdf";
$ppt = new COM("PowerPoint.Application") or die();
$ppt->Visible = 1;
$type = 32;
$ppt->Presentations->Open($ppt_name)->SaveAs($pdf_name, $type);
$ppt->Quit();

3、xls(x) ==> html (使用excel)

注意:
1、保存类型 参数为 44
PHP代码如下:

$excel_name = "E:/wamp/www/a.xlsx";
$pdf_name = "E:/wamp/www/a.html";

$excel = new COM("excel.application") or die();
$excel->Visible = 1;  //1-显示出来,0-后台操作
$type = 44;
$excel->Application->WorkBooks->Open($excel_name)->SaveAs($pdf_name, $type);
$excel->Quit();

4、doc(x)/xls(x)/ppt(x) ==> pdf/html (使用openoffice)

注意:
1、文件路径需要加 file:///
PHP代码如下:

function get_property($office, $property_parameter_array){
    $property_parameter_obj_array = array();
    foreach($property_parameter_array as $key => $value){
        $property = $office->Bridge_GetStruct("com.sun.star.beans.PropertyValue");
        $property->Name = $key;
        $property->Value = $value;
        array_push($property_parameter_obj_array, $property);
    }
    return $property_parameter_obj_array;
}
function word2pdf($doc_url, $output_url){
    $office = new COM("com.sun.star.ServiceManager") or die ("失败");
    $Desktop = $office->createInstance("com.sun.star.frame.Desktop");
    $property = get_property($office, array("Hidden"=>false));
    $WriterDoc = $Desktop->loadComponentFromURL("file:///".$doc_url, "_blank", 0, $property);
    //$property = get_property($office, array("FilterName"=>"writer_pdf_Export"));  //pdf
    $property = get_property($office, array("FilterName"=>"HTML (StarWriter)", "Overwrite"=>true));  //html
    $WriterDoc->storeToURL("file:///".$output_url, $property);
    $WriterDoc->close(true);
}
$doc_file =  "E:/wamp/www/study/online_see/a.docx";
$output_file = "E:/wamp/www/study/online_see/a.pdf";
word2pdf($doc_file, $output_file);

5、pdf ==> swf

注意:
1、PHP执行命令行 语句(可以将pdf2swf.exe加入环境变量)
2、-o 为输出路径
3、输出的文件名 带上 百分号"%" ==> 每页pdf单独为一个swf文件
PHP代码如下:

$pdf_name = 'E:/wamp/www/a.pdf';
$swf_name = 'E:/wamp/www/a%.swf';
$cmd = "E:/wamp/www/pdf2swf.exe {$pdf_name} -o {$swf_name} -f -T 9 -t -s storeallcharacters";
exec($cmd);

6、swf 输出预览:

注意:
1、需要引入3个js文件:
flexpaper_flash.js
flexpaper_flash_debug.js
jquery.js
2、会使用到FlexPaperViewer.swf
3、swfFile:第一个参数是swf文件名
a[x,0] 表示 a1 a2 a3 ... a10 a11 ...
a[x,1] 表示 a01 a02 a03 ... a10 a11 ...
4、swfFile:第二个参数是swf的个数(pdf的页数)
HTML代码如下:





你可能感兴趣的:(doc(x) xls(x) ppt(x) pdf 的在线预览)