PdfElixide.Document.TextLine (pdf_elixide v0.5.0)

Copy Markdown View Source

A single line of text extracted from a PDF page, with its zero-based page index, bounding box, and constituent words.

Summary

Types

t()

@type t() :: %PdfElixide.Document.TextLine{
  bbox: PdfElixide.Geometry.Rect.t(),
  page: non_neg_integer(),
  text: String.t(),
  words: [PdfElixide.Document.Word.t()]
}