class PDF::Reader

def self.file (name, receiver, opts = {})

Parse the file with the given name, sending events to the given receiver.
###############################################################################
def self.file (name, receiver, opts = {})
  File.open(name,"rb") do |f|
    new.parse(f, receiver, opts)
  end
end