class ImageProcessing::Vips::Processor

def resize_to_fit(width, height, **options)

Resizes the image to fit within the specified dimensions.
def resize_to_fit(width, height, **options)
  width, height = default_dimensions(width, height)
  thumbnail(width, height, **options)
end