class TestPage

Public Instance Methods

test_annotation_mapping() click to toggle source
# File poppler/test/test_page.rb, line 22
def test_annotation_mapping
  only_poppler_version(0, 7, 2)
  document = Poppler::Document.new(form_pdf)
  page = document[0]
  assert_equal([Poppler::AnnotationMapping],
               page.annotation_mapping.collect {|mapping| mapping.class}.uniq)
  mapping = page.annotation_mapping[0]
  assert_kind_of(Poppler::Rectangle, mapping.area)
  assert_kind_of(Poppler::Annotation, mapping.annotation)
end
test_get_image() click to toggle source
# File poppler/test/test_page.rb, line 2
def test_get_image
  omit("We don't have PDF that has image...")
  document = Poppler::Document.new(image_pdf)
  page, mapping = find_first_image_mapping(document)
  assert_kind_of(Cairo::ImageSurface, page.get_image(mapping.image_id))
  assert_kind_of(Cairo::ImageSurface, mapping.image)
end
test_selection_region() click to toggle source
# File poppler/test/test_page.rb, line 10
def test_selection_region
  document = Poppler::Document.new(form_pdf)
  page = document[0]
  rectangle = Poppler::Rectangle.new(0, 0, *page.size)
  region = page.get_selection_region(0.5, :word, rectangle)
  if later_version?(0, 7, 2)
    assert_kind_of(Poppler::Rectangle, region[0])
  else
    assert_kind_of(Gdk::Region, region)
  end
end