Home > Backend Development > PHP Tutorial > PHP processing Word to PDF techniques explained_PHP tutorial

PHP processing Word to PDF techniques explained_PHP tutorial

WBOY
Release: 2016-07-15 13:34:48
Original
1241 people have browsed it

We know,

PHP processing Word to PDF code example:

  1. < ?php
  2. set_time_limit(0);
  3. function MakePropertyValue ($name,$value,$osm){
  4. $oStruct = $osm- >Bridge_GetStruct
    ("com.sun.star.beans.PropertyValue");
  5. $oStruct->Name = $name;
  6. $oStruct->Value = $value;
  7. return $oStruct;
  8. }
  9. function word2pdf ($doc_url, $output_url){
  10. $osm = new COM("com.sun.star.ServiceManager")
    or die ("Please be sure that OpenOffice.org
    is installed.n");
  11. $args = array(MakePropertyValue ("Hidden",true,$osm));
  12. $oDesktop = $osm->createInstance("com.sun.star
    .frame.Desktop");
  13. $oWriterDoc = $oDesktop->loadComponentFromURL
    ($doc_url,"_blank", 0, $args);
  14. $export_args = array(MakePropertyValue
    ("FilterName","writer_pdf_Export",$osm));
  15. $oWriterDoc->storeToURL($output_url,$export_args);
  16. $oWriterDoc->close(true);
  17. }
  18. $output_dir = "D:/LightTPD/ htdocs/";
  19. $doc_file = "D:/LightTPD/htdocs/2.doc";
  20. $pdf_file = "2.pdf";
  21. $ output_file = $output_dir . $pdf_file;
  22. $doc_file = "file:///" . $doc_file;
  23. $output_file = "file:///" . $output_file;
  24. word2pdf($doc_file,$output_file);
  25. ?>

The above code is the relevant implementation method of PHP processing Word to PDF.


www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/445962.htmlTechArticleWe know that PHP processes Word to PDF code example: ?php set_time_limit(0); functionMakePropertyValue($name,$ value,$osm){ $ oStruct =$osm- Bridge_GetStruct (com.sun.star.beans.Prope...
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template