class ImageProcessing::Vips::Processor

def default_dimensions(width, height)

Hack to allow omitting one dimension.
def default_dimensions(width, height)
  raise Error, "either width or height must be specified" unless width || height
  [width || ::Vips::MAX_COORD, height || ::Vips::MAX_COORD]
end