class ImageProcessing::Vips::Processor

def resize_to_fill(width, height, **options)

necessary cropping.
Resizes the image to fill the specified dimensions, applying any
def resize_to_fill(width, height, **options)
  thumbnail(width, height, crop: :centre, **options)
end