jansenfelipe/sdaps-php

Integration Sdaps for PHP - http://sdaps.org/

v1.0.1 2014-10-20 11:01 UTC

This package is auto-updated.

Last update: 2024-04-29 02:53:59 UTC


README

Latest Stable Version Total Downloads Latest Unstable Version License

Integration Sdaps for PHP

Quick start

Install SDAPS

See http://sdaps.org/

In the require key of composer.json file add the following

"jansenfelipe/sdaps-php": "1.0.*@dev"

Execute

$ composer update

Add autoload.php

require_once 'vendor/autoload.php';  

Call

<?php

use JansenFelipe\SdapsPHP\SdapsPHP;

$pathProject = '/path/you/want/to/create/the/project/sdaps';
$pathLaTeX = '/path/format.tex';

if(SdapsPHP::createProject($pathProject, $pathLaTeX))
{
    SdapsPHP::add($pathProject, '/images/image01.tiff');
    SdapsPHP::recognize($pathProject);
    
    $pathCSV = SdapsPHP::recognize($pathProject);
    
    //handle .csv
}

See https://github.com/sdaps/sdaps