Skip to content

Instantly share code, notes, and snippets.

@ivanrosolen
Last active October 28, 2015 20:54
Show Gist options
  • Save ivanrosolen/49b646c707aa1c1247eb to your computer and use it in GitHub Desktop.
Save ivanrosolen/49b646c707aa1c1247eb to your computer and use it in GitHub Desktop.
Converters
// Extrair textos do PDF
pdftotext -layout file.pdf output.txt
// Extrair textos do PDF em um arquivo HTML
pdftotext -htmlmeta -layout file.pdf output.html
// Extrair imagens de um PDF
pdfimages file.pdf images/
// Converter imagens PPM para JPG
convert images/*.ppm image%d.jpg
// Converter arquivos "office" para pdf (tentando para jpg)
unoconv -f pdf out.xls
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment