module ActiveStorage::Blob::Representable

def variable?

Returns true if ImageMagick can transform the blob (its content type is in +ActiveStorage.variable_content_types+).
def variable?
  ActiveStorage.variable_content_types.include?(content_type)
end