class PDF::Reader::TextReceiver

def show_text (string)

PDF operator Tj
###############################################################################
def show_text (string)
  #puts "getting line #@line"
  place = (@output[@line] ||= "")
  #place << "  " unless place.empty?
  place << " " * (@state.last[:tj_adjustment].abs/900) if @state.last[:tj_adjustment] < -1000
  place << string
  #puts "place is now: #{place}"
  @written_to = true
end