PdfElixide.Document.Word (pdf_elixide v0.5.0)

Copy Markdown View Source

A single word extracted from a PDF page, with its zero-based page index, bounding box, and font metadata.

Summary

Types

t()

@type t() :: %PdfElixide.Document.Word{
  bbox: PdfElixide.Geometry.Rect.t(),
  bold?: boolean(),
  font: String.t(),
  font_size: float(),
  italic?: boolean(),
  page: non_neg_integer(),
  text: String.t()
}