This repository has been archived by the owner on Jun 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy pathPdf.php
83 lines (65 loc) · 1.64 KB
/
Pdf.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<?php
namespace Gufy\PdfToHtml;
class Pdf
{
protected $file;
protected $info;
public function __construct($file, $options = [])
{
$this->file = $file;
$class = $this;
array_walk($options, function ($item, $key) use ($class) {
$class->$key = $item;
});
return $this;
}
public function getInfo()
{
$this->checkInfo();
return $this->info;
}
protected function info()
{
if (PHP_OS === 'WINNT') {
$content = shell_exec('"'.$this->bin().'" "'.$this->file.'"');
}
else {
$content = shell_exec($this->bin()." '".$this->file."'");
}
// print_r($info);
$options = explode("\n", $content);
$info = [];
foreach ($options as &$item) {
if (!empty($item)) {
list($key, $value) = explode(":", $item);
$info[ str_replace([" "], ["_"], strtolower($key)) ] = trim($value);
}
}
$this->info = $info;
return $this;
}
public function getDom($options = [])
{
$this->checkInfo();
return new Html($this->file, $options);
}
public function html($page = 1, $options = [])
{
$dom = $this->getDom($options);
return $dom->raw($page);
}
public function getPages()
{
$this->checkInfo();
return $this->info['pages'];
}
private function checkInfo()
{
if ($this->info == null)
$this->info();
}
public function bin()
{
return Config::get('pdfinfo.bin', '/usr/bin/pdfinfo');
}
}