class PDFium::BoundingBox

The size of an object. Used with both Page and Image

Attributes

bottom[R]

dimensions for the BoundingBox. Fixnum given in terms of points

left[R]

dimensions for the BoundingBox. Fixnum given in terms of points

right[R]

dimensions for the BoundingBox. Fixnum given in terms of points

top[R]

dimensions for the BoundingBox. Fixnum given in terms of points

Public Class Methods

new(l,r,t,b) click to toggle source

Left, Right, Top, Bottom

# File lib/pdfium/bounding_box.rb, line 10
def initialize(l,r,t,b)
    @left=l; @right=r; @top=t; @bottom=b
end