Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for magic attributes using portrait and landscape #164

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions lib/dragonfly/image_magick/analyser.rb
Expand Up @@ -22,11 +22,13 @@ def portrait?(temp_object)
attrs = identify(temp_object) attrs = identify(temp_object)
attrs[:width] <= attrs[:height] attrs[:width] <= attrs[:height]
end end
alias portrait portrait?


def landscape?(temp_object) def landscape?(temp_object)
attrs = identify(temp_object) attrs = identify(temp_object)
attrs[:width] >= attrs[:height] attrs[:width] >= attrs[:height]
end end
alias landscape landscape?


def depth(temp_object) def depth(temp_object)
identify(temp_object)[:depth] identify(temp_object)[:depth]
Expand Down