This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2018-02-20 18:40:12 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class FastGeometryParser
|
|
|
|
def self.from_file(file)
|
2021-09-29 14:52:36 -07:00
|
|
|
width, height = FastImage.size(file)
|
2018-02-20 18:40:12 -08:00
|
|
|
|
|
|
|
raise Paperclip::Errors::NotIdentifiedByImageMagickError if width.nil?
|
|
|
|
|
|
|
|
Paperclip::Geometry.new(width, height)
|
|
|
|
end
|
|
|
|
end
|