Category: e-books

  • the 11 e-books I got today from O’Reilly

    Downloaded through Dropbox to my Synology ^NAS: oreilly–Agile_Data_Science.20131011104838.pdf oreilly–Building_Web_Apps_with_WordPress.20140407142920.pdf oreilly–Communicating_Data_with_Tableau.20140612124036.pdf oreilly–Data_Science_at_the_Command_Line.20140626143621.pdf oreilly–Free_as_in_Freedom.20130104090715.pdf oreilly–Graph_Databases.20130612085254.pdf oreilly–IPv6_Address_Planning.20140528100600.pdf oreilly–IPv6_Essentials–3rd_Edition.20140605124939.pdf oreilly–MySQL–Cookbook–2nd_Edition.20130114120323.pdf oreilly–Python–Cookbook–3rd_Edition.20140306152041.pdf oreilly–WordPress__The_Missing_Manual–2nd_Edition.20140617133938.pdf

  • book: PDF Explained

    http://shop.oreilly.com/product/0636920021483.do https://library.oreilly.com/book/0636920021483/pdf-explained/toc An introduction to the PDF file format, threaded through with practical examples – deconstructing, creating and processing PDF files. After exploring how PDF is produced, and how it can be edited with tools from text editors to Ghostscript to PDFTK, readers will learn to deal with problems with PDF files and common error…

  • how to print a PDF document together with its filename in its upper left corner?

    This is only a very special case of “how to add text given on the command line to a PDF file?“ If I don’t find a nice and read utility to do this, I will create an image file from the PDF file, I will create another image file from that text string (ImageMagick, GraphicsMagic?!?),…

  • pdftk – The PDF Toolkit

    http://www.pdflabs.com/tools/pdftk-the-pdf-toolkit/ https://www.pdflabs.com/docs/pdftk-man-page/ http://oreilly.com/catalog/9780596006556/ – “PDF Hacks” (the book’s author is pdflab’s director and founder) Superimpose Pages with pdftk pdftk packs iText’s power into a standalone program. Apply a single PDF page to the background of an entire document like so: pdftk mydoc.pdf output mydoc.marked.pdf background watermark.pdf pdftk will use the first page of watermark.pdf, if it…

  • xpdf: Error (…): Missing ‘endstream’

    There are a few PDF documents around here, that I can read with Acrobat Reader w/o problems, but xpdf and its companions moan. I guess, that’s because they got modified and a little destroyed using Acrobat X Pro. I used pdftk to get rid of that problem: first output/uncompress, than output/compress again: $ pdftk x.pdf…

  • how to burst a PDF document into single pages (etc.)

    http://www.pdflabs.com/tools/pdftk-the-pdf-toolkit/ https://www.pdflabs.com/docs/pdftk-cli-examples/ This command line shows, how to get the output files named your way: $ pdftk … burst output ‘page.%02d.pdf’ Split Select Pages from Multiple PDFs into a New Document: $ pdftk A=one.pdf B=two.pdf cat A1-7 B1-5 A8 output combined.pdf Select a single page (#130) into a new document: $ pdftk A=one.pdf cat A130…

  • form fields in PDF – how to retrieve their details?

    This command line shows you a few details: $ pdftk … dump_data_fields Not enough details for me. What about CAM::PDF? It comes with a couple of nice sample utilities (the bin/ subdirectory), one of them is called listpdffields.pl . It also does not show me enough details, but I think I will enhance that one. Update…

  • ruby and PDF

    the speaker: Lukas Rieder working for “paper c” some approaches writing PDF … act as flying saucer … UNIX tools xpdf : $ pdftotext -layout -enc UTF-8 … pdftk $ pdftk compressed.pdf uncompress output uncompressed.pdf imagemagick $ convert … # e.g. towards JPEG the speaker wrapped some unix tools and called that “PdfUtils”, and released…

  • annotating PDF files with free software

    flpsed is a WYSIWYG PostScript annotator. You can’t remove or modify existing elements of a document. flpsed lets you add arbitrary text lines to existing PostScript documents (PostScript is a registered trademark of Adobe Systems Incorporated). Added lines can later be reedited with flpsed. Using pdftops, which is part of xpdf one can convert PDF…