Get support for skuola/pdf-text-parser
If you're new to LTH, please see our FAQ for more information on what it is we do.
Support Options
Unfortunately, there are currently no active helpers for this repository on the platform. Until they become available, we reccomend the following actions:
View Open IssuesTake a look to see if anyone else has experienced the same issue as you and if they managed to solve it.
Open an IssueMake sure to read any relevant guidelines for opening issues on this repo before posting a new issue.
Sponsor directlyCheck out the page and see if there are any options to sponsor this project or it's developers directly.
skuola/pdf-text-parser
PDF text parser
This library is a parser for XML text files obtained via pdftotext
You can install it using composer require skuola/pdf-text-parser
Suppose you're just converted a pdf file, getting some text like the following:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<body>
<doc>
<page width="595.200000" height="841.800000">
<word xMin="56.640000" yMin="59.770680" xMax="118.022880" yMax="72.406680">Lorem</word>
<word xMin="121.209960" yMin="59.770680" xMax="176.485440" yMax="72.406680">ipsum</word>
</page>
</doc>
</body>
</html>
The above text is the result of a command like pdftotext -htmlmeta -bbox-layout yourfile.pdf -
.
You can use this library as follows:
<?php
require_once 'vendor/autoload.php';
$data = '...'; // the text above
$converter = new \Skuola\PdfTextParser\Converter($data);
// get as plain text...
$txt = $converter->getAsText();
// ...or get as HTML
$html = $converter->getAsHtml();
As alternate mode, you can save your HTML file and pass it to library:
<?php
require_once 'vendor/autoload.php';
$path = '...'; // a path containing the same text as previous example
$converter = new \Skuola\PdfTextParser\Converter(null, $path);
$html = $converter->getAsHtml();
Generated HTML is composed by a <h2>
tag or an <p>
tag for each
document line (depending on the line being a title or not).
More informations to come...
Our Mission
We want to make open source more sustainable. The entire platform was born from this and everything we do is in aid of this.
From the Blog
Interesting Articles
-
Generating income from open source
Jun 23 • 8 min read
-
2023 State of OSS
Apr 23 • 45 min read ★
-
A funding experiment...
Aug 19 • 10 min read
-
But You Said I could
Aug 19 • 2 min read
Thank you for checking out LiveTechHelper |
2025 © lth-dev incorporated
p-e622a1a2