File: size.rb

package info (click to toggle)
ruby-vips 2.1.4-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 5,164 kB
  • sloc: ruby: 3,530; makefile: 3
file content (12 lines) | stat: -rw-r--r-- 260 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
module Vips
  # Controls whether an operation should upsize, downsize, or both up and
  # downsize.
  #
  # * `:both` size both up and down
  # * `:up` only upsize
  # * `:down` only downsize
  # * `:force` change aspect ratio

  class Size < Symbol
  end
end