Git Product home page Git Product logo

documentsparser's Introduction

DOCx files parser

Parses the docx file and returns an html string. Any help or critics appreciated.

Supported elements:

  • paragraphs (w:p),
  • images (pic:pic),
  • links (w:hyperlink),
  • tables (w:t),
  • boorkmarks (w:bookmarkStart),
  • lists.

TODO:

  • shapes support
  • table cell styles
  • add links filter
  • images optimization (remove extra equal images)
  • add i18n

Known issues:

  • memory consuming
  • for big files, executing more than 30 sec (default timout time)

Usage example:

<?php
    // load lib
	require_once('DocumentsParser.php');

	// init parser
	$parserSettings = array(
		'filesDestinationFolder' => 'images',
	);

	$defaultStyles = array();

	$parser = new DocumentsParser($parserSettings, $defaultStyles);

	// parse DOCx
	$html = $parser->parseFile('test_document.docx');

	// save content to file
	file_put_contents('test_document.html', $html);
?>

Reminder links:

documentsparser's People

Contributors

t1gor avatar

Stargazers

 avatar  avatar

Watchers

 avatar

documentsparser's Issues

Fatal error: call to undefined method DocumentsParser::parseBookmark()

I cloned your repo and pointed MAMP to it, wrote a file testing.php mirroring your usage example (but pointing to the .docx that I want to parse), opened http://localhost/testing.php in the browser and got: The localhost page isn't working.

MAMP's php_error.log says:

PHP Fatal error: Uncaught Error: Call to undefined method DocumentsParser::parseBookmark() in /Users/######/DocumentsParser/DocumentsParser.php:442
Stack trace:
#0 /Users/######/DocumentsParser/DocumentsParser.php(199): DocumentsParser-parsePragraph(Object(SimpleXMLElement))
#1 /Users/######/testing.php(12): DocumentsParser->parseFile('get-the-pet-to-...')
#2 {main}
thrown in /Users/######/DocumentsParser/DocumentsParser.php on line 442

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.