method
representation
rails latest stable - Class:
ActiveStorage::Attachment
representation(transformations)public
Returns an ActiveStorage::Preview or an ActiveStorage::Variant for the attachment with set of transformations provided. Example:
avatar.representation(resize_to_limit: [100, 100]).processed.url
or if you are using pre-defined variants:
avatar.representation(:thumb).processed.url
See ActiveStorage::Blob::Representable#representation for more information.
Raises an ArgumentError if transformations is a Symbol which is an unknown pre-defined variant of the attachment.