class PDF::Reader::TextRun

def initialize(x, y, width, font_size, text)

def initialize(x, y, width, font_size, text)
  @x = x
  @y = y
  @width = width
  @font_size = font_size.floor
  @text = text
end