use Cubist\Util\Data;
use Cubist\Util\Files\Files;
use Cubist\Util\Files\VirtualDirectory;
+use Cubist\Util\Graphics\PDF;
use Cubist\Util\PHP;
use Exception;
use Fluidbook\Tools\Document;
{
// TODO: Implement addPageBackground() method.
}
+
+ public function extractPDFArea($file, $page, $rect, $to=null, $options = array(), $cache = null){
+ return PDF::extractArea($file, $page, $rect, $to=null, $options = array(), $cache = null);
+ }
}
public function addPageBackground($page, $color, $arrowsColor, $image);
public function getExternalMultimediaContents($to);
+
+ public function extractPDFArea($file, $page, $rect, $to=null, $options = array(), $cache = null);
}
{
// TODO: Implement add3DViewer() method.
}
+
+ public function extractPDFArea($file, $page, $rect, $to = null, $options = array(), $cache = null)
+ {
+ // TODO: Implement extractPDFArea() method.
+ }
}