about summary refs log tree commit diff
path: root/app/lib/fast_geometry_parser.rb
blob: 5209c2bc59d883716e371703f5905e1d92395105 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class FastGeometryParser
  def self.from_file(file)
    width, height = FastImage.size(file.path)

    raise Paperclip::Errors::NotIdentifiedByImageMagickError if width.nil?

    Paperclip::Geometry.new(width, height)
  end
end