Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created June 17, 2019 01:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/fbfa29a7368eada36ae1587e4f34cc57 to your computer and use it in GitHub Desktop.
Save parzibyte/fbfa29a7368eada36ae1587e4f34cc57 to your computer and use it in GitHub Desktop.
<?php
# Incluir autoload
include "vendor/autoload.php";
$parseador = new \Smalot\PdfParser\Parser();
$nombreDocumento = "6-imagenes.pdf";
$documento = $parseador->parseFile($nombreDocumento);
$texto = $documento->getText();
echo "<pre>";
echo $texto;
echo "</pre>";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment