Sha256: 8a75adbc0d5eea9c0ab682e27025fa8a90dbdfa6ca8132683deae08a9a3d25c6

Contents?: true

Size: 845 Bytes

Versions: 5

Compression:

Stored size: 845 Bytes

Contents

# coding: utf-8

class PDF::Reader
  # Small util class for detecting the orientation of a single PDF page. Accounts
  # for any page rotation that is in place.
  #
  #     OrientationDetector.new(:MediaBox => [0,0,612,792]).orientation
  #     => "portrait"
  #
  class OrientationDetector
    def initialize(attributes)
      @attributes = attributes
    end

    def orientation
      @orientation ||= detect_orientation
    end

    private

    def detect_orientation
      llx,lly,urx,ury = @attributes[:MediaBox]
      rotation        = @attributes[:Rotate].to_i
      width           = urx.to_i - llx.to_i
      height          = ury.to_i - lly.to_i
      if width > height
        [0,180].include?(rotation) ? 'landscape' : 'portrait'
      else
        [0,180].include?(rotation) ? 'portrait' : 'landscape'
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
pdf-reader-2.1.0 lib/pdf/reader/orientation_detector.rb
pdf-reader-2.0.0 lib/pdf/reader/orientation_detector.rb
pdf-reader-2.0.0.beta1 lib/pdf/reader/orientation_detector.rb
pdf-reader-1.4.1 lib/pdf/reader/orientation_detector.rb
pdf-reader-1.4.0 lib/pdf/reader/orientation_detector.rb