class PDF::Reader::Rectangle

def to_a

A pdf-style 4-number array
def to_a
  [
    bottom_left.x,
    bottom_left.y,
    top_right.x,
    top_right.y,
  ]
end