class Poppler::Page
Public Instance Methods
Source
# File lib/poppler/page.rb, line 53 def find_text(text, options=nil) if options.nil? find_text_raw(text) else find_text_with_options(text, options) end end
Also aliased as: find_text_raw
Source
# File lib/poppler/page.rb, line 38 def get_text(options={}) area = options[:area] style = options[:style] if area if style get_selected_text(style, area) else get_text_for_area(area) end else text end end
Source
# File lib/poppler/page.rb, line 30 def image_mapping mappings = image_mapping_raw mappings.each do |mapping| mapping.page = self end mappings end
Also aliased as: image_mapping_raw
Source
# File lib/poppler/page.rb, line 20 def text_layout success, rectangles = text_layout_raw if success rectangles else nil end end
Also aliased as: text_layout_raw
Source
# File lib/poppler/page.rb, line 62 def thumbnail_size have_thumnbial, width, height = thumbnail_size_raw if have_thumnbial [width, height] else nil end end
Also aliased as: thumbnail_size_raw